/*******************************/
/********* General CSS *********/
/*******************************/
body {
    color: #797979;
    background: #ffffff;
   /* font-family: 'Lato', sans-serif; */
   font-family: 'Poppins', sans-serif !important; 
}

body, h1, h2, h3, h4, h5, h6, p, a, button, input, textarea {
  font-family: 'Poppins', sans-serif !important;
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    color: #092a49;
    font-family: 'Oswald', sans-serif;
}

a {
    color: #454545;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #092a49;
    outline: none;
    text-decoration: none;
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

.container-fluid {
    max-width: 1366px;
}
/*
.back-to-top {
    position: fixed;
    display: none;
    background: #0796fe;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
} 

.back-to-top i {
    color: #092a49;
    padding-top: 10px;
}

.back-to-top:hover {
    background: #092a49;
}

.back-to-top:hover i {
    color: #0796fe;
} */

@media (min-width: 992px) {
    .mt-125 {
        margin-top: 125px;
    }
}


/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
    position: relative;
    height: 35px;
    background-image: linear-gradient(to right, #0796fe, #092a49);
}

.top-bar .top-bar-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.top-bar .top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar .text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    height: 35px;
    padding: 0 10px;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .text:last-child {
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .text i {
    font-size: 14px;
    color: #ffffff;
    margin-right: 5px;
}

.top-bar .text h2 {
    color: #eeeeee;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    margin: 0;
}

.top-bar .text p {
    color: #eeeeee;
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 0 5px;
}

.top-bar .social {
    display: flex;
    height: 35px;
    font-size: 0;
    justify-content: flex-end;
}

.top-bar .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 100%;
    font-size: 16px;
    color: #ffffff;
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .social a:first-child {
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .social a:hover {
    color: #092a49;
    background: #ffffff;
}

@media (min-width: 992px) {
    .top-bar {
        padding: 0 60px;
    }
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.navbar {
    position: relative;
    transition: .5s;
    z-index: 999;
    height: 45px;
    
}

.navbar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    transition: .5s;
}

.navbar .navbar-brand {
    margin: 0;
    color: white !important;
    font-size: 45px;
    line-height: 0px;
    font-weight: 200;
    text-transform: uppercase;
}

.navbar .navbar-brand img {
    max-width: 100%;
    max-height: 40px;
}

.navbar-dark .navbar-toggler {
    color: blue;
    border-color: black;
    ;
}
.navbar-toggler{
  background-color: black;
}

.navbar {
  padding: 10px 20px;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: #333;
}

.navbar-nav .nav-link:hover {
  color: #007bff;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    padding: 10px 10px 8px 10px;
    /*color: #ffffff;*/
    color: black;
    text-transform: capitalize;
    
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    /*color: #0796fe;*/
    color: darkblue;
    transition: none;
}

.navbar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: white; /* changes by Ankit */
}


/*changes by Ankit */
.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: black;
    text-align: inherit;
    white-space: nowrap;
    background-color: white !important;
    border: 0;
    text-transform: capitalize;
}
.dropdown-item:hover{
    color: black;
}
.navbar .dropdown-item { font-size: 14px; } /* Changes made by ankit */

.navbar-dark .navbar-nav .active>.nav-link, .navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .nav-link.show, .navbar-dark .navbar-nav .show>.nav-link {
    color: black;
}
/*changes by Ankit */
@media (min-width: 992px) {
    .navbar {
        position: absolute;
        width: 100%;
        top: 35px;
        padding: 20px 60px;
        /*background: rgba(9, 42, 73, .2)!important;*/
        background: rgb(9, 42, 73) ;
        z-index: 9;
        color: white;
    }
    
    .navbar.nav-sticky {
        padding: 10px 60px;
        /*background: #092a49 !important;*/
        background: white;
    }
    
    .page .navbar {
        background: white !important;
        
    }
    
    .navbar a.nav-link {
        padding: 8px 15px;
        font-size: 14px;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
}

.bg-light {
    background-color: white !important;
}

@media (max-width: 991.98px) {   
    .navbar {
        padding: 15px;
        /*background: #092a49 !important;*/
    }
    
    .navbar a.nav-link {
        padding: 5px;
    }
    
    .navbar .dropdown-menu {
        box-shadow: none;
    }
}

/***********************/


/* === Mobile: logo left, hamburger right (same row) === */
@media (max-width: 991.98px) {
  /* let the bar size itself and act as the positioning context */
  .navbar {
    height: auto !important;
    position: relative;
    display: block; /* keep bootstrap defaults, we'll absolutely place the toggler */
    padding: 10px 15px;
    background: #fff;
    z-index: 1000;
  }

  /* if there's a container inside navbar, anchor to it too */
  .navbar > .container,
  .navbar > .container-fluid {
    position: relative;
  }

  /* keep logo left and reserve space so the toggler doesn't overlap it */
  .navbar-brand {
    display: flex;
    align-items: center;
    margin: 0;
    padding-right: 56px; /* space for the toggler */
  }
  .navbar-brand img { max-height: 40px; width: auto; }

  /* put the hamburger on the far right, vertically centered */
  .navbar-toggler {
    position: absolute !important;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 !important;
    padding: 6px 10px;
    z-index: 2;
  }

  /* when opened, the menu drops below and spans full width */
  .navbar-collapse {
    width: 100%;
    margin-top: 10px;
  }
}
/***************************/


/*******************************/
/********** Hero CSS ***********/
/*******************************/

/*
.carousel {
    position: relative;
    width: 100%;
    height: calc(100vh - 35px);
    min-height: 400px;
    background: #092a49;
    margin-bottom: 45px;
    margin-top: 80px;
}

.carousel .container-fluid {
    padding: 0;
}

.carousel .carousel-item {
    position: relative;
    width: 100%;
    height: calc(100vh - 35px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}

.carousel .carousel-img {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: right;
    overflow: hidden;
}

.carousel .carousel-img::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(9, 42, 73, .7);
    z-index: 1;
}

.carousel .carousel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .carousel-text {
    position: absolute;
    max-width: 700px;
    height: calc(100vh - 35px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
}

.carousel .carousel-text h1 {
    text-align: center;
    color: #ffffff;
    font-size: 60px;
    font-weight: 200;
    margin-bottom: 20px;
}

.carousel .carousel-text p {
    color: #ffffff;
    text-align: center;
    font-size: 20px;
    margin-bottom: 25px;
}

.carousel .carousel-text .btn {
    padding: 15px 30px;
    font-size: 16px;
    letter-spacing: 1px;
    color: #ffffff;
    background: none;
    border: 2px solid #ffffff;
    border-radius: 0;
    transition: .3s;
}

.carousel .carousel-text .btn i {
    margin-right: 5px;
}

.carousel .carousel-text .btn:hover {
    color: #0796fe;
    background: #ffffff;
}

.carousel .carousel-btn .btn:first-child {
    margin-right: 15px;
}

.carousel .owl-nav {
    position: absolute;
    width: 122px;
    right: 2px;
    bottom: 2px;
    display: flex;
    z-index: 9;
}

.carousel .owl-nav .owl-prev,
.carousel .owl-nav .owl-next {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0796fe;
    background: #092a49;
    font-size: 22px;
    transition: .3s;
}

.carousel .owl-nav .owl-prev:hover,
.carousel .owl-nav .owl-next:hover {
    color: #ffffff;
    background: #0796fe;
}

.carousel .owl-nav .owl-prev {
    margin-right: 2px;
}

.carousel .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}


@media (max-width: 991.98px) {
    .carousel,
    .carousel .carousel-item,
    .carousel .carousel-text {
        height: calc(100vh - 105px);
    }
    
    .carousel .carousel-text h1 {
        font-size: 35px;
    }
    
    .carousel .carousel-text p {
        font-size: 16px;
    }
    
    .carousel .carousel-text .btn {
        padding: 12px 30px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 767.98px) {
    .carousel,
    .carousel .carousel-item,
    .carousel .carousel-text {
        height: calc(100vh - 70px);
    }
    
    .carousel .carousel-text h1 {
        font-size: 30px;
    }
    
    .carousel .carousel-text .btn {
        padding: 10px 25px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-text h1 {
        font-size: 25px;
    }
    
    .carousel .carousel-text .btn {
        padding: 8px 20px;
        font-size: 14px;
        letter-spacing: 0;
    }
}
*/  

/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    text-align: left;
    margin-bottom: 45px;
    margin-top: 65px;

}

.section-header p {
    margin-bottom: 5px;
    position: relative;
    font-size: 16px;
}
/* This change for why choose Us ? Content in home*/
p {
    margin-top: -15px;
    margin-bottom: 1rem;
}
.section-header h2 {
    margin: 0 0 0 50px; 
    position: relative;
    font-size: 36px;
    font-weight: bold;
    margin-left: 4px;
    font-size: 32px;       /* make it larger */
    font-weight: bold;      /* bold */
    line-height: 1.4;      /* spacing between lines */
    color: #1a1a1a;        /* text color (dark grey/black) */
    text-align: left;      /* align to left (or center/right if needed) */
    margin-bottom: -5px;
}
.why-choose {
  font-size: 36px;
  font-weight: bold;
  text-align: left; /* change to left if needed */
  display: inline-block;
  background: linear-gradient(90deg, #007BFF, #00C6FF, #00FFD1, #007BFF); 
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-family: 'Poppins', sans-serif;
  padding-bottom: 8px;
/*  border-bottom: 4px solid #00C6FF; */
}
  
/*
.section-header h2::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 0;
    top: 23px;
    left: -40px;
    border-bottom: 30px solid;
    border-image: repeating-linear-gradient( 60deg, rgba(0,0,0,.05), rgba(0,0,0,.05) 1.5%, rgba(0,0,0,.1) 1.5%, rgba(0,0,0,.1) 3%) 30;
}
 */
.section-header h2:hover::after {
    border-image: repeating-linear-gradient( 60deg, rgba(0,0,0,.1), rgba(0,0,0,.1) 1.5%, rgba(0,0,0,.05) 1.5%, rgba(0,0,0,.05) 3%) 30;
}

@media (max-width: 991.98px) {
    .section-header h2 {
        font-size: 45px;
    }
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 40px;
    }
}

@media (max-width: 575.98px) {
    .section-header h2 {
        font-size: 35px;
    }
}



/*******************************/
/********** Fact CSS ***********/
/*******************************/


.fact {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
    margin-top: 2%;  /* this is for Qualified team for change by ankit */
    
}

.fact .fact-item {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    padding: 30px 0 25px 0;
    text-align: center;
    background: #ffffff;
    border: 1px solid transparent;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    transition: .3s;
}

.fact .fact-item:hover {
    border-color: rgba(0, 0, 0, .1);
    box-shadow: none;
}

.fact .fact-item img {
    max-height: 50px;
    margin-bottom: 15px;
}

.fact .fact-item h2 {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 1px;
}
/* Mobile view CSS change by Ankit */
@media (max-width: 767px) {
  .slider {
    margin-bottom: 60px; /* add more space below slider on mobile */
  }

  .fact {
    margin-top: 60px;  /* add more space above fact on mobile */
  }
}


/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.about .section-header {
    margin-bottom: 30px;
    margin-left: 0;
}

.about .about-img {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: .5s;
}

.about .about-img::after {
    position: absolute;
    content: "";
    top: 60px;
    right: 60px;
    bottom: 60px;
    left: 60px;
    background: transparent;
    border: 30px solid;
    border-image: repeating-linear-gradient( 45deg, rgba(0,0,0,.05), rgba(0,0,0,.05) .5%, rgba(0,0,0,.1) .5%, rgba(0,0,0,.1) 1%) 30;
    z-index: 1;
}

.about .about-img:hover::after {
    border-image: repeating-linear-gradient( 45deg, rgba(0,0,0,.1), rgba(0,0,0,.1) .5%, rgba(0,0,0,.05) .5%, rgba(0,0,0,.05) 1%) 30;
}

.about .about-img-1 {
    position: relative;
    height: 100%;
    height: 100%;
    margin: 0 150px 150px 0;
}

.about .about-img-2 {
    position: absolute;
    height: 100%;
    height: 100%;
    top: 150px;
    left: 150px;
    z-index: 1;
}

.about .about-img-1 img,
.about .about-img-2 img {
    position: relative;
    width: 100%;
}

.about .about-text p {
    font-size: 16px;
}

.about .about-text a.btn {
    position: relative;
    margin-top: 15px;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #092a49;
    border: 2px solid #092a49;
    border-radius: 0;
    background: none;
    transition: .3s;
}

.about .about-text a.btn:hover {
    color: #0796fe;
    background: #092a49;
}

@media (max-width: 767.98px) {
    .about .about-img {
        margin-bottom: 30px;
        height: auto;
    }
}


/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}


.service .service-item {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, .1);
    transition: .3s;
    display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);

  /* ðŸ‘‡ ensures all boxes align */
  height: 90%;
}



.service .service-item:hover {
    border-color: transparent;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.service .service-item img {
    max-height: 50px;
    margin-bottom: 20px;
     display: block;
  margin: 0 auto; 
}

.service .service-item h3 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 1px;
}

.service .service-item p {
    margin-bottom: 10px;
    font-size: 16px;
}
p {
    margin-top: -5px; 
    margin-bottom: 1rem;
}

.service .service-item a {
    position: relative;
    font-size: 16px;
    color: #0796fe;
    transition: .3s;
}

.service .service-item a::after {
    content: "";
    position: absolute;
    width: 80%;
    height: 2px;
    bottom: -3px;
    left: 10%;
    background: #0796fe;
}

.service .service-item:hover a.btn {
    color: #092a49;
    background: #1d2434;
    border-color: #1d2434;
}


/*******************************/
/********* Feature CSS *********/
/*******************************/
.feature {
    position: relative;
    width: 100%;
    padding: 45px 0;
    margin-top: 70px;
}

.feature .col-md-6 {
    height: 100%;
    margin-top: -100px;
}



.feature .feature-img {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}
/*New change by Ankit in this top margin */
/*
.feature .feature-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 70%;
    top: 30%;
    left: 0;
    border: 30px solid;
    border-image: repeating-linear-gradient( 45deg, rgba(0,0,0,.05), rgba(0,0,0,.05) .5%, rgba(0,0,0,.1) .5%, rgba(0,0,0,.1) 1%) 30;
    z-index: 1;
}
*/
.feature .feature-img:hover::after {
    border-image: repeating-linear-gradient( 45deg, rgba(0,0,0,.1), rgba(0,0,0,.1) .5%, rgba(0,0,0,.05) .5%, rgba(0,0,0,.05) 1%) 30;
}

.feature .feature-img img {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    margin: 0 30px 30px 30px;
    z-index: 2;
    height: auto;
    margin-left: 0;
    
}





@media (max-width: 767.98px) {
    .feature .feature-img {
        margin-bottom: 45px;
    }
}

.feature .counters .col-6 {
    padding-top: 25px;
    display: flex;
    flex-direction: row;
}

.feature .counters i {
    padding: 5px 15px 0 0;
    font-size: 28px;
    color: #0796fe;
}

.feature .counters h2 {
    position: relative;
    display: inline-block;
    color: #0796fe;
    font-size: 30px;
    font-weight: 300;
}

.feature .counters h2::after {
    position: absolute;
    content: "+";
    top: -15px;
    right: -15px;
}

.feature .counters p {
    color: #092a49;
    font-size: 20px;
    margin: 0;
}


/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.team .team-item {
    position: relative;
    margin-bottom: 75px;
}

.team .team-img {
    position: relative;
}

.team .team-img img {
    width: 100%;
}

.team .team-text {
    position: absolute;
    width: calc(100% - 30px);
    /*height: 96px; */
    bottom: -46px;
    left: 15px;
    padding: 25px 15px;
    text-align: center;
    background: rgba(256, 256, 256, .9);
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    transition: .3s;
    overflow: hidden;
}

.team .team-text h2 {
    color: #0796fe;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.team .team-text p {
    margin-bottom: 20px;
    color: #092a49;
}

.team .team-social {
    position: relative;
    font-size: 0;
}

.team .team-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    margin: 0 3px;
    padding: 5px 0;
    text-align: center;
    font-size: 14px;
    color: #092a49;
    border: 2px solid #092a49;
    transition: .3s;
}

.team .team-social a:hover {
    color: #0796fe;
    border-color: #0796fe;
}

.team .team-item:hover .team-text {
    height: 160px;
}


/*******************************/
/******* Testimonial CSS *******/
/*******************************/
*.testimonial {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.testimonial .testimonials-carousel {
    position: relative;
    width: calc(100% + 30px);
    margin: 0 -15px;
}

.testimonial .testimonial-item {
    position: relative;
    width: 100%;
    padding: 0 15px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}

.testimonial .testimonial-item img {
    position: relative;
    width: 80px;
    border-radius: 80px;
    margin-bottom: 15px;
}

.testimonial .testimonial-item p {
    margin-bottom: 15px;
}

.testimonial .testimonial-item h2 {
    position: relative;
    color: #092a49;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 5px;
    padding-bottom: 3px;
}

.testimonial .testimonial-item h2::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #0796fe;
    transition: .3s;
}

.testimonial .testimonial-item:hover h2::before {
    width: 60px;
}

.testimonial .testimonial-item h3 {
    color: #999999;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 0;
}

.testimonial .owl-nav {
    position: relative;
    width: 100%;
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial .owl-nav .owl-prev,
.testimonial .owl-nav .owl-next {
    position: relative;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0796fe;
    font-size: 25px;
    transition: .3s;
}

.testimonial .owl-nav .owl-prev {
    padding-right: 80px;
}

.testimonial .owl-nav .owl-next {
    padding-left: 80px;
}

.testimonial .owl-nav .owl-prev:hover,
.testimonial .owl-nav .owl-next:hover {
    color: #092a49;
}

.testimonial .owl-nav .owl-prev::after,
.testimonial .owl-nav .owl-next::after {
    position: absolute;
    content: "";
    width: 80px;
    height: 3px;
    top: 11px;
    background: #0796fe;
    transition: .3s;
}

.testimonial .owl-nav .owl-prev::after {
    left: 9px;
}

.testimonial .owl-nav .owl-next::after {
    right: 9px;
}

.testimonial .owl-nav .owl-prev:hover::after {
    background: #092a49;
}

.testimonial .owl-nav .owl-next:hover::after {
    background: #092a49;
}

.testimonial-photo {
    width: 80px;
    border-radius: 80px;
    margin-bottom: 15px;
}



/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.blog .section-header {
    margin-bottom: 75px;
}

.blog .blog-carousel {
    position: relative;
    width: calc(100% + 30px);
    left: -15px;
    right: -15px;
}

.blog .blog-item {
    position: relative;
    margin: 0 15px;
}

.blog.blog-page .blog-item {
    margin: -30px 0 0 0;
}

.blog .blog-img {
    position: relative;
    width: 100%;
    z-index: 1;
}

.blog .blog-img img {
    width: 100%;
}

.blog .blog-content {
    position: relative;
    width: calc(100% - 60px);
    top: -60px;
    left: 30px;
    padding: 25px 30px;
    background: #ffffff;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    z-index: 2;
}

.blog .blog-content h2.blog-title {
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 1px;
}

.blog .blog-meta {
    position: relative;
    margin-bottom: 15px;
}

.blog .blog-meta * {
    display: inline-block;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 300;
    color: #797979;
}

.blog .blog-meta i {
    color: #0796fe;
    margin: 0 2px 0 10px;
}

.blog .blog-meta i:first-child {
    margin-left: 0;
}

.blog .blog-text {
    position: relative;
}

.blog .blog-text p {
    margin-bottom: 10px;
}

.blog .blog-item a.btn {
    position: relative;
    padding: 0 0 0 35px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #0796fe;
    transition: .3s;
}

.blog .blog-item a.btn:hover {
    color: #092a49;
}

.blog .blog-item a.btn::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 2px;
    top: 10px;
    left: 0;
    background: #0796fe;
}

.blog .owl-nav {
    position: relative;
    width: 100%;
    margin-top: -30px;
    display: flex;
    justify-content: center;
}

.blog .owl-nav .owl-prev,
.blog .owl-nav .owl-next {
    position: relative;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0796fe;
    font-size: 25px;
    transition: .3s;
}

.blog .owl-nav .owl-prev {
    padding-right: 80px;
}

.blog .owl-nav .owl-next {
    padding-left: 80px;
}

.blog .owl-nav .owl-prev:hover,
.blog .owl-nav .owl-next:hover {
    color: #092a49;
}

.blog .owl-nav .owl-prev::after,
.blog .owl-nav .owl-next::after {
    position: absolute;
    content: "";
    width: 80px;
    height: 3px;
    top: 11px;
    background: #0796fe;
    transition: .3s;
}

.blog .owl-nav .owl-prev::after {
    left: 9px;
}

.blog .owl-nav .owl-next::after {
    right: 9px;
}

.blog .owl-nav .owl-prev:hover::after {
    background: #092a49;
}

.blog .owl-nav .owl-next:hover::after {
    background: #092a49;
}

.blog .pagination {
    margin-bottom: 0;
}

.blog .pagination .page-link {
    margin-top: -30px;
    color: #092a49;
    border-radius: 0;
    border-color: #092a49;
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    color: #0796fe;
    background: #092a49;
}

.blog .pagination .disabled .page-link {
    color: #999999;
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.contact .contact-info {
    position: relative;
    display: flex;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, .1);
    margin-bottom: 30px;
    transition: .3s;
}

.contact .contact-info:hover {
    border-color: transparent;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.contact .contact-icon {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .contact-icon i {
    font-size: 18px;
    color: #0796fe;
}

.contact .contact-text {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 15px;
}

.contact .contact-text h3 {
    font-size: 16px;
    font-weight: 400;
    color: #092a49;
    letter-spacing: 1px;
}

.contact .contact-text p {
    margin: 0;
    font-size: 16px;
}

.contact .contact-form {
    position: relative;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, .1);
    margin-bottom: 30px;
    transition: .3s;
}

.contact .contact-form:hover {
    border-color: transparent;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.contact .contact-form input {
    padding: 15px;
    background: none;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .contact-form textarea {
    height: 100px;
    padding: 8px 15px;
    background: none;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .contact-form .btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #092a49;
    background: none;
    border: 2px solid #092a49;
    border-radius: 0;
    transition: .3s;
}

.contact .contact-form .btn:hover {
    color: #0796fe;
    background: #092a49;
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}


/*******************************/
/******* Single Page CSS *******/
/*******************************/
.single {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.single img {
    width: 100%;
    margin: 0 0 25px 0;
    margin-top: -35px;
    outline: none;
}

.single .table,
.single .list-group {
    margin-bottom: 30px;
}

.single .ul-group {
    padding: 0;
    list-style: none;
}

.single .ul-group li {
    margin-left: 2px;
}

.single .ul-group li::before {
    position: relative;
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.single .ol-group {
    padding-left: 18px;
}


/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 45px;
    padding-top: 90px;
    background: #092a49;
}

.footer .footer-contact,
.footer .footer-link,
.footer .footer-newsletter {
    position: relative;
    margin-bottom: 45px;
    color: #ffffff;
}

.footer .footer-contact h2,
.footer .footer-link h2,
.footer .footer-newsletter h2 {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 10px;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #ffffff;
}

.footer .footer-contact h2::after,
.footer .footer-link h2::after,
.footer .footer-newsletter h2::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #0796fe;
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    transition: .3s;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .footer-link a:hover {
    color: #0796fe;
    letter-spacing: 1px;
}

.footer .footer-contact p i {
    width: 25px;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
}

.footer .footer-social a {
    display: inline-block;
}

.footer .footer-social a i {
    margin-right: 15px;
    font-size: 18px;
    color: white;
}

.footer .footer-social a:last-child i {
    margin: 0;
}

.footer .footer-social a:hover i {
    color: #999999;
}

.footer .footer-newsletter .form {
    position: relative;
    width: 100%;
}

.footer .footer-newsletter input {
    height: 60px;
    border: 2px solid #1d2434;
    border-radius: 0;
}

.footer .footer-newsletter .btn {
    position: absolute;
    top: 8px;
    right: 8px;
    height: 44px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #092a49;
    background: none;
    border-radius: 0;
    border: 2px solid #092a49;
    transition: .3s;
}

.footer .footer-newsletter .btn:hover {
    color: #0796fe;
    background: #092a49;
}

.footer .copyright {
    padding: 0 30px;
}

.footer .copyright .row {
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright p {
    margin: 0;
    color: #999999;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: #ffffff;
}

.footer .copyright p a:hover {
    color: #0796fe;
}

@media (max-width: 767.98px) {
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}




/* New changes */


/* Adjust for mobile screens */
@media (max-width: 768px) {
    .carousel-slide-img {
        height: 40vh;
    }
}

@media (max-width: 480px) {
    .carousel-slide-img {
        height: 30vh;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.slider {
    position: relative;
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    position: relative;
    top: 50px; 
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fits images nicely */
}

.navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.navigation button {
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px;
    font-size: 20px;
    cursor: pointer;
}

.slider {
  position: relative;
  width: 100%;
  max-width: 100%; /* Full width for mobile */
  overflow: hidden;
}

.slides {
  display: flex;
}

.slide {
  min-width: 100%;
}

.slide img {
  width: 100%;
  height: auto; /* Keep aspect ratio */
  display: block;
}

.navigation {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 10;
  padding: 0 10px;
  box-sizing: border-box;
}

.navigation button {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 12px;
  cursor: pointer;
  font-size: 24px;
  border-radius: 50%;
  transition: background 0.3s;
}

.navigation button:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Mobile view adjustments */
@media (max-width: 768px) {
  .navigation button {
    padding: 8px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .navigation button {
    padding: 6px;
    font-size: 16px;
  }
}

.testimonial .owl-carousel .owl-item img {
    width: 100px !important;
    height: 100px !important;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}




.why-choose {
  font-size: 36px;
  font-weight: bold;
  text-align: left; /* change to left if needed */
  display: inline-block;
  /*background: linear-gradient(90deg, #007BFF, #00C6FF, #00FFD1, #007BFF); */
  background: black;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-family: 'Poppins', sans-serif;
  padding-bottom: 8px;
  border-bottom: 4px solid black; 
  margin-left: -300px;
  margin-top: 50px;
  
}

/*--------------------------------*/

/* ===== Conflict-free fade slider (namespaced) ===== */
.x-slider{
  position:relative;
  width:100%;
  height:clamp(260px,60vw,560px); /* keeps height stable; prevents white gap */
  overflow:hidden;
  background:#000; /* prevents initial white flash */
}

.x-track{ position:relative; width:100%; height:100%; }
.x-slide{
  position:absolute; inset:0;
  opacity:0; transition:opacity 500ms ease;
  pointer-events:none;
}
.x-slide.is-active{ opacity:1; pointer-events:auto; }
.x-slide img{ width:100%; height:100%; object-fit:cover; display:block; }

/* nav */
.x-nav{ position:absolute; inset:0; display:flex; justify-content:space-between; align-items:center; pointer-events:none; }
.x-nav button{
  pointer-events:auto;
  border:0; width:44px; height:44px; border-radius:50%;
  background:rgba(0,0,0,.5); color:#fff; font-size:20px; 
  /*line-height:44px;*/
}
.x-nav button:focus{ outline:2px solid #fff4; }

/* IMPORTANT: neutralize any old generic .slider/.slide rules that might conflict */
.slider,.slides,.slide{ all:unset; display:revert; }


/* Fit image perfectly inside slider without cropping (letterbox effect if aspect ratio differs) */
.x-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;  /* change to 'cover' if you prefer cropping */
  background-color: #000; /* fills empty space if aspect ratio doesnâ€™t match */
}

/* Remove black background from slider */
.x-slider,
.slider,
.carousel,
.x-slide,
.slide {
  background: transparent !important;  /* or use white: #fff */
}

/* If object-fit: contain leaves gaps, fill them with white instead of black */
.x-slide img,
.slide img,
.carousel .carousel-img img {
  background-color: #fff; /* or match your site background */
}

/* Remove black background & keep images clean */
.x-slider {
  background: transparent !important;
}

.x-slide img {
  object-fit: contain;     /* fits without cropping */
  background: #fff;        /* fills empty space with white */
}




/* Our Partners Section */
.partners {
  width: 100%;
  text-align: center;
  background: white;
  padding: 40px 0;
}

.partners h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #003366;
}

/* Slider Wrapper */
.partners-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Track for logos */
.partners-track {
  display: flex;
  width: calc(200px * 12); /* total partner logos Ã— width */
  animation: slide 25s linear infinite;
}

/* Each logo */
.partner {
  flex: 0 0 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.partner img {
  max-width: 150px;
  max-height: 70px;
  object-fit: contain;
  /*filter: grayscale(100%); */   /* gray effect */
  transition: filter 0.3s;
}

.partner img:hover {
  filter: grayscale(0%);     /* color on hover */
}

/* Continuous scroll */
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


.about-section .col-md-6 {
    flex: 0 0 100% !important; 
    max-width: 100% !important; 
}



/*--------------------------------*/

.service-item {
    text-align: center;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-item img {
    width: 50px;
    margin-bottom: 15px;
}

.service-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 22px;
    color: #555;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}

.info-item i {
    margin-right: 8px;
    color: black;
}

/********Microsoft365********/


.pricing-section {
  padding: 20px 20px;
  background: white;
  font-family: Arial, sans-serif;
  margin-top: 100px;
}

.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  margin-top: -20px;
}


.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.pricing-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.price {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.price span {
  font-size: 14px;
  color: #555;
}

.subtext {
  font-size: 12px;
  color: #666;
  margin-bottom: 15px;
}

.buttons {
  margin: 15px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  border: none;
}

.btn.primary {
  background: #0078D7;
  color: #fff;
}

.btn.outline {
  background: #fff;
  border: 1px solid #0078D7;
  color: #0078D7;
}

.features {
  list-style: none;
  padding: 0;
  margin-top: 15px;
  color: #333;
}

.features li {
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 14px;
  position: relative;
}

.features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0078D7;
  font-size: 14px;
}


.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.plan {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plan.popular {
  /*border: 2px solid #0078d7;*/
  position: relative;
}

.plan.popular::before {
  content: "Most popular";
/*  background: #0078d7; */
  color: #fff;
  padding: 5px 10px;
  border-radius: 0 0 6px 6px;
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
}

.plan h3 {
  margin: 0;
  font-size: 18px;
  color: #222;
  margin-top: 15px;
}

.price {
  font-size: 22px;
  font-weight: bold;
  margin: 10px 0;
  color: #000;
}

.sub-text {
  font-size: 13px;
  color: #555;
  margin-bottom: 15px;
}

.buttons {
  display: flex;
  gap: 10px;
  margin-bottom: auto;
}

.buttons button {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #0078d7;
  cursor: pointer;
  font-weight: bold;
}

.buy { background: #0078d7; color: #fff; }
.try { background: #fff; color: #0078d7; }

.plan ul {
  padding-left: 18px;
  font-size: 14px;
  color: #333;
}

.icons {
  margin-top: 15px;
}

.icons img {
  width: 25px;
  margin: 5px;
}

.learn {
  margin-top: auto;
  font-size: 14px;
  color: #0078d7;
  text-decoration: none;
  font-weight: bold;
}

/*
/* Hide the last pricing card */
/*.pricing-card:last-child {
    display: none !important;
}*/


.pricing-container {
  max-width: 1200px;   /* keeps it neat like middle  */
  margin: 0 auto;      /* center align */
  padding: 20px;       /* spacing */
}


.pricing-container .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}


/****************************/



/* ---------- PRICING SECTION ---------- */
.pricing-section {
  padding: 20px 20px;
  background: #fff;
  font-family: Arial, sans-serif;
  margin-top: 100px;
}

/* Section Title */
.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: bold;
}

/* Pricing Container */
.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

/* Individual Pricing Card */
.pricing-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.pricing-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

/* Price Section */
.price {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000;
}

.price span {
  font-size: 14px;
  color: #555;
}

.subtext {
  font-size: 13px;
  color: #555;
  margin-bottom: 15px;
}

/* Buttons */
.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.buttons button, .btn {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #0078D7;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  transition: 0.3s;
}

.buy, .btn.primary {
  background: #0078D7;
  color: #fff;
  border: 1px solid #0078D7;
}

.try, .btn.outline {
  background: #fff;
  color: #0078D7;
  border: 1px solid #0078D7;
}

.buttons button:hover {
  opacity: 0.9;
}

/* Feature List */
.features, .plan ul {
  list-style: none;
  padding-left: 18px;
  margin-top: 15px;
  color: #333;
}

.features li, .plan ul li {
  position: relative;
  margin-bottom: 8px;
  font-size: 14px;
}

.features li::before, .plan ul li::before {
/*  content: "âœ”"; */
  position: absolute;
  left: 0;
  color: #0078D7;
  font-size: 14px;
}

/* Plan Section */
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}



/****Css for Adobe********/


 .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 60px;
      margin: 60px auto;
      max-width: 1200px;
      padding: 0 15px;
      font-family: 'Poppins', sans-serif !important; 
      
      
    }

    .card {
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.08);
      transition: transform 0.2s ease;
  
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .icon {
      width: 50px;
  height: 50px;
  margin-bottom: 10px;
  border-radius: 12px;   /* keep square with rounded corners */
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
    }

    .icon img {
      width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  border-radius: 0 !important;   /* prevent accidental rounding */
  box-shadow: none !important;   /* remove unwanted shadows */
}

    /* Example color placeholders */
    .cc { background: linear-gradient(45deg, #ff0057, #ff9800); }
    .acrobat { background: #c62828; }
    .ps { background: #0d47a1; }
    .pr { background: #6a1b9a; }
    .ai { background: #ff6f00; }
    .stock { background: #263238; }
    .express { background: #00bfa5; }
    .firefly { background: #ff1744; }

    h3 {
      margin: 10px 0;
      font-size: 1.1em;
    }

    
    .actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    button {
      border: none;
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 0.9em;
      cursor: pointer;
    }

    .buy {
      background: #0078D7;
      color: #fff;
    }

    .trial {
      background: #fff;
      border: 1px solid #0078D7;
      color: #0078D7;
    }

    .free {
      background: #0078D7;
      color: #fff;
    }


    

.card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;

  /* NEW: make equal height with buttons at bottom */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card:hover {
  transform: translateY(-5px);
}

.card h3, .card p {
  margin: 0 0 10px;
}

.actions {
  margin-top: auto;  /* pushes buttons to bottom */
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}




/* Remove the big white gap above this heading */
.services-title {
    margin-top: 0px !important;  /* removes extra space above */
    padding-top: -30px;           /* optional fine-tuning */
}



/* Remove large gap above Cloud Service heading */
.cloud-title {
    margin-top: 0 !important;   /* kill the default browser margin */
    padding-top: 20px;          /* adjust space from image */
}


.cloud-banner {
    margin-top: -100px;     /* adjust as needed */
    padding-top: 10px;   /* optional */
}




/*********************Seqrite***************/

h1, h2, h3 {
  margin-bottom: 10px;
  text-align: left;
}
p {
  margin-bottom: 15px;
}

/* Hero */
.seqrite-hero {
  background: linear-gradient(135deg, #e30613, #9b0d14);
  color: white;
  text-align: center;
  padding: 70px 20px;
}
.seqrite-hero h1 {
  font-size: 40px;
  margin: 0;
}
.seqrite-hero p {
  font-size: 18px;
  margin-top: 10px;
}

/* Sections */
.seqrite-section {
  padding: 50px 40px;
  max-width: 1100px;
  margin: auto;
}
.seqrite-section.gray {
  background: white;
}

/* Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}
.card:hover {
  transform: translateY(-5px);
}

/* Features */
.features {
  list-style: none;
  padding: 0;
}
.features li {
  margin: 10px 0;
  padding-left: 30px;
}

/* FAQ */
.faq h4 {
  margin: 15px 0 5px;
  color: #e30613;
}
.faq p {
  margin: 0 0 15px;
}

/* Contact */
.seqrite-contact {
  background: #e30613;
  color: white;
  text-align: center;
  padding: 50px 20px;
}
.contact-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background: white;
  color: #e30613;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}
.contact-btn:hover {
  background: #f4f4f4;
}

/* Footer */
.seqrite-footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}


.features-section {
  padding: 60px 20px;
  background: white;
  text-align: center;
}

.features-section h2 {
  font-size: 32px;
  color: #092a49;
  margin-bottom: 40px;
}

/* Grid layout */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: auto;
}

/* Individual feature card */
.feature-card {
  background: white;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Icon styling */
.feature-card .icon {
  font-size: 36px;
  color: #e30613;
  margin-bottom: 15px;
}

/* Text */
.feature-card p {
  font-size: 16px;
  color: #333;
  font-weight: 500;
  margin: 0;
}

/**********New footer css*************/
.city-inline {
  font-size: 16px;
  color: white;
}

.city-inline a {
  text-decoration: none;
  color: white;  /* normal text color */
  margin: 0 5px;
}

.city-inline a:hover {
  color: #0078d7; /* color on hover */
}


/****************Google CSS***********************/


/* ===== Products Section Only ===== */
#products {
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
}

#products h2 {
  color: #092a49;
  margin-bottom: 30px;
  text-align: center;
  font-size: 28px;
}

#products .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

#products .card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}

#products .card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 6px;
  background: linear-gradient(90deg,#4285F4,#EA4335,#FBBC05,#34A853);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

#products .card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0,0,0,.18);
}

#products .card h3 {
  margin: 15px 0 10px;
  font-size: 20px;
  color: #092a49;
}

#products .card p {
  margin: 0;
  line-height: 1.5;
  font-size: 15px;
  color: #333;
}

/* Responsive for small screens */
@media(max-width:520px) {
  #products h2 { font-size: 22px; }
  #products .card h3 { font-size: 18px; }
}


/******************Auotdesk****************/



/* ===== Autodesk Products Section Only ===== */
.autodesk-products {
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
}

.autodesk-products h2 {
  color: #092a49; /* Autodesk blue */
  margin-bottom: 30px;
  text-align: center;
  font-size: 28px;
}

.autodesk-products .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.autodesk-products .card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}

.autodesk-products .card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 6px;
  background: #092a49;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.autodesk-products .card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0,0,0,.18);
}

.autodesk-products .card h3 {
  margin: 15px 0 10px;
  font-size: 20px;
  color: #092a49;
}

.autodesk-products .card p {
  margin: 0;
  line-height: 1.5;
  font-size: 15px;
  color: #333;
}

/* Responsive for small screens */
@media(max-width:520px) {
  .autodesk-products h2 { font-size: 22px; }
  .autodesk-products .card h3 { font-size: 18px; }
}


/****************Tallyprime******************?
/* ===== Styles only for TallyPrime products section ===== */
.tally-products {
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
}

.tally-products h2 {
  color: #092a49;
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
}

.tally-products .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.tally-products .card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}

.tally-products .card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 6px;
  background: linear-gradient(90deg,#092a49,#092a49);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.tally-products .card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0,0,0,.18);
}

.tally-products .card h3 {
  margin: 15px 0 10px;
  font-size: 20px;
  color: #092a49;
}

.tally-products .card p {
  margin: 0;
  font-size: 15px;
  color: #555;
}

/* Responsive tweaks */
@media(max-width:520px) {
  .tally-products h2 { font-size: 22px; }
  .tally-products .card h3 { font-size: 18px; }
}



/********************Azure css*********************************/


/***************************/

.azure-products {
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
}

.azure-products h2 {
  color: #092a49; /* Autodesk blue */
  margin-bottom: 30px;
  text-align: center;
  font-size: 28px;
}

.azure-products .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.azure-products .card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}

.azure-products .card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 6px;
  background: #092a49;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.azure-products .card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0,0,0,.18);
}

.azure-products .card h3 {
  margin: 15px 0 10px;
  font-size: 20px;
  color: #092a49;
}

.azure-products .card p {
  margin: 0;
  line-height: 1.5;
  font-size: 15px;
  color: #333;
}

/* Responsive for small screens */
@media(max-width:520px) {
  .azure-products h2 { font-size: 22px; }
  .azure-products .card h3 { font-size: 18px; }
}









/*******************************/
/* Section wrapper */
.contact-section {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px;
  background: white;
}

/* Card design */
.contact-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  padding: 30px 20px;
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover animation */
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Icon style */
.contact-icon {
  font-size: 50px;
  color: black;
  margin-bottom: 15px;
}

/* Title style */
.contact-title {
  margin: 10px 0;
  color: #333;
  font-size: 20px;
  text-align: center;
}

/* Info text */
.contact-info {
  margin: 5px 0;
  color: #555;
  font-size: 15px;
}

/* Email link */
.contact-link {
  color: black;
  font-weight: bold;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

/* 📱 Responsive for mobile */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    align-items: center;
  }

  .contact-card {
    width: 100%;
  }
}



.location-india {
  margin-top: -100px !important; /* force it upwards */
  display: block;
  text-align: center;  /* optional: center it */
  color: #333;
  font-weight: 500;
  font-size: 28px;
}


/**********************New theme css change in home*************/
/* Section styling */
.resources {
  text-align: center;
  padding: 50px;
  background: white;
}

.resources h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.resources p {
  color: #555;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

/* Card container */
.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Card */
.card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 320px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

/* Card Image */
.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}



/* Card Content */
.card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

/* Tag */
.card-content .tag {
  font-size: 0.9rem;
  color: #555;
  font-weight: 600;
}

/* Title */
.card-content h3 {
  font-size: 1.3rem;
  color: #003366;
}

/* Description */
.card-content p {
  font-size: 0.95rem;
  color: #444;
  flex-grow: 1;
}

/* Button */
.card-content .btn {
  display: inline-block;
  padding: 10px 15px;
  background: #0078d4;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.card-content .btn:hover {
  background: #005a9e;
}

/*************New CSS WHC*************/


/**********************************/
/* About Card Layout */
.about-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin: 40px auto;
  max-width: 1200px;
  
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
      
}

/* Text Column */
.about-text {
  flex: 1;
  min-width: 280px;
}

.about-text .about-subtitle {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  color: #0078D7;
  margin-bottom: 10px;
      content: "+";
}

.about-text h2 {
  font-size: 26px;
  font-weight: 600;
  color: #222;
  margin-bottom: 20px;
}

.about-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
  text-align: left;
}

/* Button */
.about-text .btn {
  display: inline-block;
  background: #0078D7;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.about-text .btn:hover {
  background: #0796fe;;
}

/* Image Column */
.about-image {
  flex: 1;
  min-width: 280px;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.about-text .counters h2 {
  position: relative;
  display: inline-block;
  color: #0796fe;
  font-size: 30px;
  font-weight: 300;
}

.about-text .counters h2::after {
  position: absolute;
  content: "+";
  top: -15px;
  right: -15px;
}

/************************************/
.about-card {
  padding: 40px 20px;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
}

.about-image img {
  max-width: 100%;
  border-radius: 12px;
}

/* Flip order: Image first, text second */
.about-content {
  flex-direction: row-reverse;
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }
  .about-text {
    order: 2;
  }
  .about-image {
    order: 1;
  }
}



/****************************************/



.feature {
  padding: 40px;
  display: flex;
  justify-content: center;
  background: white /* light bg */
}

.feature .container {
  max-width: 1200px;
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border: 1px solid #e5e5e5;
}

.feature-img img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

/* Section Header */
.section-header {
  margin-bottom: 20px;
}
.section-header h2.why-choose {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
}

/* Paragraph */
.feature p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
}

/* Counters */
.counters {
  margin-top: 20px;
}
.counters .col-6 {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.counters i {
  font-size: 28px;
  color: #0078d4;
  margin-right: 10px;
}
.counters-text h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}
.counters-text p {
  margin: 0;
  font-size: 13px;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .feature .container {
    padding: 20px;
  }
  .row.align-items-end {
    flex-direction: column;
  }
  .feature-img {
    margin-bottom: 20px;
  }
}
/* Container for text block */
.feature .section-header {
  margin-bottom: 15px;
}

.feature .section-header h2.why-choose {
  font-size: 26px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

/* Paragraph styling */
.feature p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 25px;
  text-align: justify;  /* makes it look neat */
}

/* Counter Section */
.counters {
  display: flex;
  flex-wrap: wrap;
  /*gap: 25px 40px;*/
}

.counters .col-6 {
  flex: 0 0 45%;  /* two in each row */
  display: flex;
  align-items: center;
}

.counters i {
  font-size: 28px;
  color: #0078d4;
  margin-right: 12px;
}

.counters-text h2 {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
  color: #0078d4;
}

.counters-text p {
  margin: 0;
  font-size: 14px;
  color: #555;
}


.about-card {
  padding: 40px 20px;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-direction: row-reverse; /* Image first, text second */
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
}

.about-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Counter styling */
.counters {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  margin-top: 20px;
}

.counter-box {
  flex: 0 0 45%;
  display: flex;
  align-items: center;
}

.counter-box i {
  font-size: 28px;
  color: #0c8ef2;
  margin-right: 12px;
}

.counters-text h2 {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
  color: #0078d4;
}

.counters-text p {
  margin: 0;
  font-size: 14px;
  color: #444;
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }
  .counter-box {
    flex: 0 0 100%;
    justify-content: center;
  }
}

/*****************Whatsenqury****************************/



/* Floating button container */
    .floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      z-index: 1000;
    }

    /* Common button style */
    .float-btn {
      display: flex;
      align-items: center;
      gap: 8px;
      background: #128C7E;
      color: white;
      padding: 12px 18px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 16px;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(0,0,0,0.25);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .float-btn:hover {
      transform: scale(1.05);
      box-shadow: 0 6px 14px rgba(0,0,0,0.3);
    }

    /* WhatsApp */
    .whatsapp {
      background: linear-gradient(135deg,#25D366,#128C7E);
    }

    /* Email */
    .email {
      background: linear-gradient(135deg,#ff9800,#e65100);
    }


/*********************Team Slider css *******************************/

/*
.team-slider {
  width: 100%;
  overflow: hidden;
  background: #fff;
  padding: 40px 0;
}

.team-track {
  display: flex;
  width: calc(300px * 8); /* adjust based on number of items 
  animation: team-scroll 20s linear infinite;
}

.team-item {
  flex: 0 0 220px;
  margin: 0 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  padding: 15px;
}

.team-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.team-item h3 {
  margin: 10px 0 5px;
  color: #0073e6;
  text-align: center;
}

.team-item p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

.team-linkedin {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 10px;
  border: 1px solid #0073e6;
  border-radius: 6px;
  color: #0073e6;
  text-decoration: none;
  font-size: 14px;
}

@keyframes team-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* slides half, then loops 
}
 

.team-item img {
  width: 100%;
  height: auto;        /* adjust height automatically 
  object-fit: contain; /* keep full image 
  border-radius: 12px 12px 0 0;
}
*/


.team-slider {
  width: 100%;
  overflow: hidden;       /* hide overflow */
  background: #fff;
  padding: 30px 0;
}

.team-track {
  display: flex;
  width: max-content;
  animation: team-scroll 25s linear infinite; /* continuous scroll */
}

.team-slider:hover .team-track {
  animation-play-state: paused; /* stop on hover */
}

.team-item {
  flex: 0 0 220px;
  margin: 0 12px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  text-align: center;
  padding: 10px;
}

.team-item img {
  width: 100%;
  height: 180px;
  object-fit: contain;       /* show full image */
  background: #fff;
  border-radius: 10px 10px 0 0;
}

.team-item h3 {
  margin: 8px 0 4px;
  font-size: 16px;
  color: #0073e6;
  text-align: center;
}

.team-item p {
  margin: 0;
  font-size: 13px;
  color: #555;
}

.team-linkedin {
  display: inline-block;
  margin-top: 6px;
  padding: 4px 8px;
  border: 1px solid #0073e6;
  border-radius: 5px;
  color: #0073e6;
  text-decoration: none;
  font-size: 12px;
}

/* Animation for continuous scroll */
@keyframes team-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* loop half width */
}



/*************************** banner slider***************/

.contact-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;   /* 🔥 makes columns equal height */
  gap: 40px;
  padding: 50px;
}

.contact-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* keeps spacing neat */
  padding: 25px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: white;
}

.contact-title {
  margin-bottom: 10px;
  color: #222;
  font-size: 18px;
}

.contact-text {
  margin-bottom: 20px;
  color: #555;
  font-size: 15px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
}

.contact-textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-btn {
  background: #0a2647;
  color: #fff;
  border: none;
  padding: 14px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background: #144272;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
}
/* Fancy contact cards (desktop view) */
.fancy-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 18px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.fancy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.fancy-icon {
  min-width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 14px;
}

.fancy-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: #0a2647;
}

.fancy-content p {
  font-size: 14px;
  margin: 4px 0 0;
  color: #555;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .fancy-card {
    flex-direction: row;       /* Keep icon left, text right */
    padding: 14px;
    margin-bottom: 14px;
    border-radius: 10px;
  }

  .fancy-icon {
    min-width: 40px;
    height: 40px;
    font-size: 18px;
    margin-right: 12px;
  }

  .fancy-content h3 {
    font-size: 15px;
  }

  .fancy-content p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .fancy-card {
    padding: 12px;
  }

  .fancy-icon {
    min-width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .fancy-content h3 {
    font-size: 14px;
  }

  .fancy-content p {
    font-size: 12px;
  }
}
