
.py_5{
    padding: 100px 0px;
}
.py_2{
    padding: 0 0 70px 0;
}
.header_number a {
    background: #fc5707;
    border: 1px solid #fc5707;
}
.header_number  a:hover {
    color: #FC5707 !important;
    border: 1px solid #FC5707 !important;
}

section.overview-section a{
    background: #0255B8;
    border: 1px solid #0255B8;
}
section.overview-section  a:hover {
    color: #FC5707 !important;
    border: 1px solid #FC5707 !important;
}
/*Animated button css */
.glow-on-hover {
    width: 150px;
    height: 50px;
    border: none;
    outline: none;
    color: #fff;
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, 
    #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:active {
    color: #000
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #161765;
    left: 0;
    top: 0;
    border-radius: 10px;
}
.heading_about p {
    color: #555;
    text-align: justify;
}
@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}


/* ========= Header/Navbar CSS Start ========= */

.main_navbar {
    background: #ffffff;
    border-bottom: 1px solid #e3e3e3;
    padding: 10px 0;
}

/* Logo */
.main_navbar .header_logo img {
    width: 100%;
    max-width: 200px;
}

/* Desktop Menu */
.main_navbar .menu_items {
    display: flex;
    justify-content: center;
}

.main_navbar .menu_list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.main_navbar .menu_list li a {
    text-decoration: none;
    font-weight: 500;
    color: #11204e;
    font-size: 15px;
    transition: 0.3s;
}

.main_navbar .menu_list li a:hover {
    color: #0d6efd;
}

/* Social Icons */
.main_navbar .social_icons a {
    color: #11204e;
    font-size: 18px;
    margin-left: 18px;
    transition: 0.3s;
}

.main_navbar .social_icons a:hover {
    color: #0d6efd;
}

/* Mobile Toggle Button */
.main_navbar .mobile-toggle {
    border: none;
    background: none;
    font-size: 32px;
    color: #11204e;
}

/* Mobile Menu */
.main_navbar .mobile_menu {
    display: none;
    background: #ffffff;
    padding: 15px;
    border-top: 1px solid #e3e3e3;
}

.main_navbar .mobile_menu ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.main_navbar .mobile_menu ul li {
    padding: 10px 0;
}

.main_navbar .mobile_menu ul li a {
    text-decoration: none;
    color: #11204e;
    font-size: 18px;
}

.main_navbar .mobile_social a {
    font-size: 22px;
    margin: 0 10px;
    color: #11204e;
    transition: 0.3s;
}

.main_navbar .mobile_social a:hover {
    color: #0d6efd;
}

/* ========= Header/Navbar CSS End ========= */



/* ==========Hero Section============= */

/* ========================= HERO SECTION Css Start ========================= */

.hero_section {
    background: #038ed1;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Subtle floating background shapes */
.hero_section::after,
.hero_section::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    animation: hero_section-float 6s infinite ease-in-out alternate;
}

.hero_section::before {
    width: 300px;
    height: 300px;
    top: -80px;
    right: -80px;
}

.hero_section::after {
    width: 200px;
    height: 200px;
    bottom: -60px;
    left: -60px;
}

/* Animation */
@keyframes hero_section-float {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(30px);
    }
}

/* LEFT DIV TEXT */
.hero_section_left_div {
    animation: hero_section-slideLeft 1.1s ease forwards;
    opacity: 0;
}

@keyframes hero_section-slideLeft {
    0% { transform: translateX(-50px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

.hero_section_title {
    font-size: 55px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero_section_subtitle {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 420px;
}

/* Button */
.hero_section_btn {
    background: #ffffff;
    color: #0e1a3a;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.hero_section_btn:hover {
    background: #0e1a3a;
    color: #ffffff;
    border: 1px solid #ffffff;
}

/* RIGHT DIV IMAGE */
.hero_section_right_div img {
    width: 90%;
    max-width: 450px;
    animation: hero_section-slideUp 1.2s ease forwards;
    opacity: 0;
}

@keyframes hero_section-slideUp {
    0% { transform: translateY(50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .hero_section {
        padding: 60px 0;
        text-align: center;
    }

    .hero_section_title {
        font-size: 32px;
    }

    .hero_section_subtitle {
        margin: 0 auto 25px;
    }

    .hero_section_right_div img {
        width: 75%;
        margin-top: 25px;
    }
}



/* ========================= HERO SECTION Css End ========================= */



/* ================Service Section Css Start============  */
/* =============================
   SERVICE SECTION
============================= */
.service_section {
    background: #f8f9fc;
}

/* Service Box */
.service_section .service_box {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    /* box-shadow: 0 6px 20px rgba(0,0,0,0.06); */
    opacity: 0;
    transform: translateY(50px);
    animation: fadeUp 1s ease forwards;
}

/* Delayed animations for each box */
.service_section .col-lg-3:nth-child(1) .service_box { animation-delay: 0.2s; }
.service_section .col-lg-3:nth-child(2) .service_box { animation-delay: 0.4s; }
.service_section .col-lg-3:nth-child(3) .service_box { animation-delay: 0.6s; }
.service_section .col-lg-3:nth-child(4) .service_box { animation-delay: 0.8s; }

/* Hover Effect */
.service_section .service_box:hover {
   /* transform: translateY(-12px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
    border: 1px solid #007bff1a; */
}

/* Icon Styling */
.service_section .service_box img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: 0.3s ease;
}

.service_section .service_box:hover img {
    transform: scale(1.07);
}

/* Headings */
.service_section .service_box h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

/* Paragraph */
.service_section .service_box p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* Fade-Up Animation */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================
    RESPONSIVE
============================= */
@media (max-width: 991px) {
    .service_section .service_box {
        padding: 25px;
    }
}

@media (max-width: 767px) {
    .service_section .service_box h2 {
        font-size: 18px;
    }
    .service_section .service_box img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 575px) {
    .service_section {
        padding: 40px 0;
    }
}


/* ================Service Section Css End============  */



/* =================4th section css start */
/* =====================================================
   MAIN SECTION
===================================================== */

.main_section {
    background: linear-gradient(117deg, #FEF0F8 14.35%, #DACFFF 84.4%);
}

/* Left Div Styling */
.main_section .left_div {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}

.main_section .left_div .icon_img {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    object-fit: contain;
    animation: floatIcon 3s infinite ease-in-out;
}

.main_section .left_div h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.main_section .left_div p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* Right Div */
.main_section .right_div {
    position: relative;
}

.main_section .right_div .image_wrapper {
    position: relative;
    padding: 30px;
    /* background: #fff; */
    border-radius: 18px;
    /* box-shadow: 0 12px 25px rgba(0,0,0,0.08); */
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1.1s ease forwards;
    animation-delay: 0.3s;
}

/* Watermark background */
.main_section .right_div::before {
    content: "";
    position: absolute;
    top: -30px;
    right: -30px;
    width: 180px;
    height: 180px;
    background-image: url('/images/icons/home_webdeveloper_pic1.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.06;
    z-index: -1;
    transform: rotate(-15deg);
}

/* Image Styling */
.main_section .right_div img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.main_section .right_div:hover img {
    transform: scale(1.03);
}

/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {
    .main_section .left_div h2 {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .main_section {
        padding: 40px 0;
    }

    .main_section .right_div {
        margin-top: 30px;
    }

    .main_section .right_div::before {
        width: 130px;
        height: 130px;
        top: -20px;
        right: -10px;
    }
}

@media (max-width: 575px) {
    .main_section .left_div h2 {
        font-size: 22px;
    }

    .main_section .left_div p {
        font-size: 15px;
    }

    .main_section .right_div .image_wrapper {
        padding: 20px;
    }
}

/* ===========4th section css end=========== */


/* ==========Pricing Section css Start */
/* =====================================================
   PACKAGE SECTION
===================================================== */

.package_section {
    text-align: center;
}

/* Title */
.package_section h2 {
       font-weight: 800;
    margin-bottom: 10px;
    /*opacity: 0;*/
    /*transform: translateY(20px);*/
    /*animation: fadeUp 1s ease-out forwards, gradientFlow 4s ease infinite;*/
    
    /* Gradient Text */
    /*background: linear-gradient(90deg, #142B4F, #A86EF8, #FF7AD9, #142B4F);*/
    background-size: 300% 300%;
    -webkit-background-clip: text;
    /*-webkit-text-fill-color: transparent;*/
}

/* Fade-up Animation */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Flowing Gradient Animation */
@keyframes gradientFlow {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}



.package_section p {
    font-size: 16px;
    color: #555;
    text-align: center;
}

/* Package Card */
.package_section .package_div {
    background: #fff;
    padding: 25px;
margin-bottom:1.2rem;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s forwards;
}

/* Delay animation for each card */
.package_section .col-md-4:nth-child(2) .package_div {
    animation-delay: 0.25s;
}

.package_section .col-md-4:nth-child(3) .package_div {
    animation-delay: 0.45s;
}

/* Hover Effect */
.package_section .package_div:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Image */
.package_section .package_div img {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 20px;
}

/* Heading */
.package_section .package_div h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

/* Price Line */
.package_section .package_div p span:first-child {
    font-weight: 700;
    color: #333;
}

.package_section .package_div p span:nth-child(2) {
    font-size: 20px;
    font-weight: 700;
    color: #1e90ff;
}

.package_section .package_div p span:nth-child(3) {
    text-decoration: line-through;
    color: #999;
    margin-left: 5px;
}

/* List Items */
.package_section .package_div ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    text-align: left;
}

.package_section .package_div ul li {
    padding: 8px 0;
    font-size: 15px;
    color: #444;
    display: flex;
    align-items: center;
}

.package_section .package_div ul li::before {
    content: "✔";
    margin-right: 8px;
    color: #1e90ff;
    font-weight: bold;
}
/* =====================================================
   ANIMATIONS
===================================================== */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================================
   RESPONSIVE 
===================================================== */

@media (max-width: 991px) {
    .package_section h2 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .package_section {
        padding: 50px 0;
    }

    .package_section .package_div {
        margin-bottom: 25px;
    }

    .package_section p {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .package_section h2 {
        font-size: 24px;
    }

    .package_section .package_div {
        padding: 18px;
    }

    .package_section .package_div h3 {
        font-size: 18px;
    }
}

/* ======package section css End */



/* Footer section css start */
/* MAIN FOOTER SECTION */
/* ================================
   MAIN FOOTER SECTION
================================ */
.footer_section {
  background: #0e1a3a;
  color: #e4e4e4;
  position: relative;
  overflow: hidden;
  
}

/* ================================
   ANIMATION
================================ */
.footer_section .footer_col {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.footer_section .footer_col:nth-child(2) {
  animation-delay: 0.2s;
}
.footer_section .footer_col:nth-child(3) {
  animation-delay: 0.4s;
}
.footer_section .footer_col:nth-child(4) {
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================
   LOGO & DESCRIPTION
================================ */
.footer_section .footer_logo img {
  width: 100%;
  margin-bottom: 15px;
  max-width: 250px;
}

.footer_section .footer_logo p {
  line-height: 1.6;
  color: #fff;
  opacity: 0.9;
}

/* ================================
   HEADINGS
================================ */
.footer_section h4 {
  font-size: 20px;
  margin-bottom: 18px;
  /*color: #ffffff;*/
  position: relative;
  display: inline-block;
}

.footer_section h4::after {
  content: "";
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #142B4F, #A86EF8, #FF7AD9, #142B4F);
  display: block;
  margin-top: 5px;
  border-radius: 3px;
}

/* ================================
   LIST LINKS
================================ */
.footer_section ul {
  padding: 0;
  list-style: none;
}

.footer_section ul li {
  margin: 8px 0;
}

.footer_section ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer_section ul li a:hover {
  color: #038ed1;
  padding-left: 5px;
}

/* ================================
   CONTACT INFO + ICONS
================================ */
.footer_section .footer_info p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
}

.footer_section .footer_info p i {
  color: #A86EF8;
  font-size: 18px;
  background: rgba(168, 110, 248, 0.15);
  padding: 8px;
  border-radius: 50%;
  transition: 0.3s ease;
}

.footer_section .footer_info p a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
    margin-left: 4px;
}

/* Hover Effect */
.footer_section .footer_info p:hover i {
  background: #A86EF8;
  color: #038ed1;
  transform: scale(1.15);
}

.footer_section .footer_info p:hover a {
  color: #038ed1;
}

/* ================================
   RESPONSIVE DESIGN
================================ */
@media (max-width: 992px) {
  .footer_section .footer_row {
    text-align: center;
  }
  .footer_section h4::after {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .footer_section {
    padding: 40px 0;
  }
  .footer_section .footer_col {
   /* margin-bottom: 30px; */
  }

  .footer_section .footer_info p {
    justify-content: center;
  }
}
