*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Hind Siliguri', sans-serif;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
a{
  text-decoration: none;
}
/* Main colors */
:root {
  --deep-green: #014421;
  --site-red: #FE9A02;
  --light-green: #d1fae5;
  --text-white: #ffffff;
  --text-black: #272727;
}
/* Header */
.topbar{
  width: 100%;
  height: 10px;
  background: var(--site-red);
}
.site-logo{
  width: 180px;
}
.navbar-nav li a{
  font-size: 18px;
  font-weight: 500;
  color: var(--text-black);
}

.awesome-button {
  display: inline-block;
  background-color: var(--site-red);
  color: #fff;
  padding: 8px 16px;
  font-size: 17px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
}

.awesome-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--deep-green);
  transition: all 0.4s ease;
  z-index: -1;
}

.awesome-button:hover::before {
  left: 0;
}

.awesome-button:hover {
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
/* Hero Section Styles */
/* Slider Heights */
.hero-carousel .hero-slide {
  height: 75vh; /* 🔥 Height ছোট করা হলো */
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Dark Overlay */
.hero-carousel .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.55);
}

/* Content Position */
.hero-carousel .content-box {
  position: relative;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}

/* Title Bigger */
.hero-carousel .hero-title {
  font-size: 52px;  /* 🔥 Title বড় করা */
  font-weight: 700;
  line-height: 1.2;
}

@media(max-width:768px){
  .hero-carousel .hero-slide { height: 55vh; }
  .hero-carousel .hero-title { font-size: 30px; }
}

/* Buttons */
.hero-btn {
  background: #ff8800;
  padding: 12px 32px;
  border-radius: 35px;
  color: white;
  font-size: 17px;
  display: inline-block;
  transition: 0.35s;
}

/* Button Hover Effect */
.hero-btn:hover {
  background: #ff6600;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255,120,0,0.4);
}


/* Optional button hover */
.hero-section .btn-primary {
  background-color: #ff5722;
  border-color: #ff5722;
  transition: 0.3s;
}

.hero-section .btn-primary:hover {
  background-color: #e64a19;
  border-color: #e64a19;
}
.hero-section h1{
  font-size: 60px;
  font-weight: 900;
}
.hero-section p{
  max-width: 800px;
  margin: 0 auto;
  font-size: 22px;
}
@media only screen and (max-width: 768px) {
 
  .hero-section h1{
    font-size: 20px;
    line-height: 32px;
  }
  .hero-section p{
    font-size: 16px;
  }
  .section-title{
    font-size: 24px!important;
  }
  .hero-section{
    padding-top:60px;
    padding-bottom:60px;
    min-height: 60vh;
  }
}

/* What Type of website We Make */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1b1b1b;
  font-family: 'Hind Siliguri', sans-serif;
}

.section-divider {
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #fe9902, #014421);
  margin-top: 10px;
  border-radius: 10px;
  margin-bottom: 30px;
}
.wwm .card h5 {
  font-weight: 700;
  font-family: 'Hind Siliguri', sans-serif;
  color: var(--site-red);
  font-size: 16px;
}
.wwm .card{
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border: 1px solid var(--site-red)!important;
  transition: all 0.4s ease;
}
.wwm .card:hover{
  transform: translateY(10px);
}
.wwm img{
  width: 70px;
  margin: 0 auto;
  padding-bottom: 10px;
  pointer-events: none;
}
/** Completed Project **/
.completed-projects-section {
  background:
    linear-gradient(rgb(254, 154, 4), rgba(0, 50, 100, 0.7));
    padding: 80px 0;
}

.project-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: all 0.3s ease;
}
.project-card:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}
.project-card h5{
  margin-top: 5px;
  margin-bottom: 15px;
  font-size: 17px;
}

/*About Us Section*/
.about-section {
  margin-bottom: 80px;
}
.about-section .content p{
  text-align: justify;
}
/*footer  Section*/
footer {
  background: linear-gradient(135deg, #7B867E, #ff9901);
  color: #ffffff;
}
footer a:hover {
  text-decoration: underline;
  color: var(--site-red)!important;
}
footer li{
  padding-bottom: 10px;
}
footer i{
  font-size: 28px;
}

/*breadcrumb-section*/
.breadcrumb-section {
  background: linear-gradient(135deg, #0f2027, #fe9800, #2c5364); /* Deep gradient */
  background-size: cover;
  background-position: center;
}
.breadcrumb a {
  text-decoration: none;
  transition: color 0.3s ease;
}
.breadcrumb a:hover {
  color: #ffc107; /* Optional hover effect */
}
/*Protfolio page*/
.protfolio-page{
  margin-top: 30px;
  margin-bottom: 80px;
}

.protfolio-page .project-card{
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  background: linear-gradient(rgb(253, 153, 1), rgb(170, 170, 170));
}
.protfolio-page .project-card h5{
  text-align: center;
}

.protfolio-page .project-card a{
  text-align: center;
}
.protfolio-page .awesome-button{
  display: block!important;
}
/*Domain ANd Hosting*/
.domain-section {
  
}

.domain-section h2 {
  font-weight: bold;
}

.domain-section h4 {
  margin-bottom: 0;
}

.domain-section .shadow {
  transition: transform 0.3s ease;
}

.domain-section .shadow:hover {
  transform: scale(1.05);
}

.hosting-section {
  margin-bottom: 60px;
}
.hosting-section .card {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border: none;
}
.upper{
  background: var(--site-red);
  border-radius: 10px;
  padding: 10px;
}
.hosting-section .card .card-title{
  color: blanchedalmond;
  padding: 2px;
  border-radius: 8px;
  font-size: 28px;
  font-weight: 700;
}
.hosting-section .card h5{
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}
.hosting-section .card h6{
  font-size: 16px;
  font-weight: 700;
  color: blanchedalmond;
}
.card ul li {
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
  color: #2e2e2e;
  font-weight: 600;
  font-size: 18px;
}
.card ul li:last-child {
  border-bottom: none;
}


.social-icons a {
  transition: transform 0.3s ease;
}
.social-icons a:hover {
  transform: scale(1.2);
}
.t-custom{
  color: var(--site-red);
  font-size: 18px;
}
.contact-section p{
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
}
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 30px;
  background: linear-gradient(135deg, #014421, #0984e3);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  display: none;
  z-index: 999;
  transition: all 0.3s ease;
}

.back-to-top:hover {
  background: #222;
  color: #fff;
}

.whatsapp-float {
  position: fixed;
  width: 40px;
  height: 40px;
  bottom: 80px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  text-decoration: none;
}
.why-choose-us .box{
  border: 1px solid var(--site-red)!important;
}
.why-choose-us .box{
 transition: all 0.4s ease;
}
.why-choose-us .box:hover{
  transform: translateY(10px);
}
/*update in 29 march 2025*/
header{
  background: #fff;
}
.navbar-toggler {
    padding: 4px;
    font-size: 16px;
    font-weight: 700;
    background-color: aliceblue;
  }

@media only screen and (max-width: 768px) {
  .wwm .card h5{
    font-size: 12px;
    font-weight: 600;
  }
  .wwm img{
    width: 50px;
    pointer-events: none;
  }
  .site-logo{
    width: 160px;
  }
  .owner-message-section{
    display: block;
    overflow: hidden;
  }
  .completed-projects-section{
    padding: 40px 0;
  }
  .navbar-nav .nav-link .active{
    color: rgb(254, 154, 2);
  }
}
/* About Section */
.about-section-modern {
    padding: 60px 0;
}

/* Image Wrapper */
.about-image-wrapper {
    overflow: hidden;
    border-radius: 20px;
    height: 350px;
}
.about-image {
    width: 100% !important;
    height: 350px !important;
    object-fit: cover !important;
    border-radius: 20px !important;
        transition: transform 0.4s ease, box-shadow 0.4s;
}

.about-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

/* Text */
.about-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-text {
    text-align: justify;
    margin-bottom: 25px;
    line-height: 1.8;
}

/* Tagline */
.tagline {
    font-size: 14px;
    font-weight: 600;
    color: #fe9a02;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

/* Button */
.about-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #fe9a02;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.about-btn:hover {
    background: #e64a19;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(255,87,34,0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .about-title {
        font-size: 26px;
        text-align: center;
    }
    .about-text {
        text-align: justify;
    }
    .tagline {
        text-align: center;
        display: block;
    }
    .about-btn {
        display: block;
        text-align: center;
        margin: 0 auto;
    }
    .about-image-wrapper {
        height: 280px;
    }
}

/** Team**/
.our-team{
    border: 2px solid #fe9800;
    border-radius: 10px;
    text-align: center;
    margin: 10px;
    z-index: 1;
    position: relative;
}
.our-team:before,
.our-team:after{
    content: "";
    width: 100%;
    height: 104%;
    background: #fe9800;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: -1;
    transform: translateY(-50%) scaleX(0.3);
    transition: all 0.3s ease 0s;
}
.our-team:after{
    width: 106%;
    left: 50%;
    transform: translate(-50%, -50%) scaleY(0.25);
}
.our-team:hover:before{ transform: translateY(-50%) scaleX(0.7); }
.our-team:hover:after{ transform: translate(-50%, -50%) scaleY(0.7); }
.our-team img{
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: all 0.3s ease 0s;
}
.our-team .team-content{
    width: 93%;
    padding: 25px 0 10px;
    background: #fe9800;
    position: absolute;
    bottom: 50px;
    left: 50%;
    opacity: 0;
    -webkit-clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
    clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
    transform: translateX(-50%);
    transition: all 0.3s cubic-bezier(0.5, 0.2,0.1,0.9);
}
.our-team:hover .team-content{
    bottom: 10px;
    opacity: 1;
}
.our-team .title{
    font-size: 25px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
    text-transform: capitalize;
    margin: 0;
}
.our-team .post{
    display: block;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.our-team .social{
    padding: 0;
    margin: 0;
    list-style: none;
}
.our-team .social li{
    display: inline-block;
    margin: 0 5px;
}
.our-team .social li a{
    display: block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    background: #fff;
    font-size: 20px;
    color: #fe9800;
    transition: all 0.3s ease 0s;
}
.our-team .social li a:hover{
    background: linear-gradient(to bottom,#fe9800, darkred);
    box-shadow: 0 0 0 5px rgba(255,255,255,0.3);
    color: #fff;
}
@media only screen and (max-width: 990px){
    .our-team{ margin-bottom: 30px; }
}

/* Card Styling */
.course-card {
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
}
.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Thumbnail */
.course-thumb {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.course-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.course-card:hover .course-thumb img {
    transform: scale(1.1);
}

/* Price Ribbon */
.ribbon {
    position: absolute;
    top: 10px;
    left: -5px;
    background: #ff7f50; /* orange */
    color: #fff;
    padding: 5px 12px;
    font-weight: 600;
    border-radius: 0 5px 5px 0;
    font-size: 0.9rem;
}

/* Button Orange Theme */
.btn-orange {
    background: #ff7f50;
    color: #fff;
    font-weight: 500;
    transition: background 0.3s;
}
.btn-orange:hover {
    background: #ff5722;
    color: #fff;
}

/* Card body text */
.course-card .card-body {
    padding: 20px;
}


