

/********** Template CSS **********/
:root {
  --primary: #ff685f;
  --secondary: #555555;
  --light: #F1F3FA;
  --dark: #1C2035;
}

/* Topbar */
.topbar {
  background: var(--primary);
  color: #fff;
  padding: 18px 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 15px;
}

.topbar-info span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-social a {
  width: 34px;
  height: 34px;
  background: #fff;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* Navbar */
.navbar-wrapper {
  background: #fff;
  box-shadow: 0 3px 20px rgba(0,0,0,0.06);
  z-index: 999;
}

.navbar {
  min-height: 90px;
  padding: 0;
}

.navbar-brand img {
  height: 90px;
  width: auto;
  transition: 0.3s ease;
}

.navbar-nav {
  align-items: center;
  gap: 8px;
}

/* Menu Links */
.navbar .nav-link {
  color: var(--dark);
  font-size: 16px;
  font-weight: 500;
  padding: 8px 14px;
  margin: 0 3px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

/* Hover Effect */
.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--primary);
  background: rgba(255,104,95,0.08);
}

/* Quote Button */
.quote-btn {
  background: var(--primary);
  color: #fff;
  border-radius: 30px;
  padding: 11px 24px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.quote-btn:hover {
  background: var(--dark);
  color: #fff;
  transform: translateY(-2px);
}

/* Dropdown */
.dropdown-menu {
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  padding: 8px 0;
}

.dropdown-item {
  padding: 10px 18px;
  font-size: 14px;
  transition: 0.3s;
}

.dropdown-item:hover {
  background: var(--primary);
  color: #fff;
}

/* Desktop Dropdown Hover */
@media (min-width: 992px) {

  .navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }

  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 991px) {

  .topbar {
    display: none;
  }

  .navbar {
    padding: 10px 0;
    min-height: auto;
  }

  .navbar-brand img {
    height: 75px;
  }

  .navbar-collapse {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-top: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  }

  .navbar-nav {
    align-items: flex-start;
    gap: 2px;
  }

  .navbar .nav-link {
    width: 100%;
    padding: 12px 15px;
    font-size: 15px;
    margin: 2px 0;
  }

  .dropdown-menu {
    box-shadow: none;
    border-radius: 8px;
    background: #f8f9fa;
    margin-left: 10px;
  }
}

/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 3.5rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.Profile-header {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url() center center no-repeat;
    background-size: cover;
}

.Profile-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.Profile-header .breadcrumb-item,
.Profile-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}

/* =========================
   ABOUT SECTION
========================= */

.about-section {
    background: linear-gradient(135deg,#f8fbff,#eef5ff);
    overflow: hidden;
    position: relative;
}

.about-section::before{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(13,110,253,.08);
    border-radius:50%;
    top:-120px;
    left:-120px;
}

.about-section::after{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(13,110,253,.05);
    border-radius:50%;
    bottom:-150px;
    right:-100px;
}

/* Image Area */

.about-image-wrapper{
    position:relative;
    animation: floatImage 4s ease-in-out infinite;
}

.main-about-img{
    border-radius:25px;
    width:100%;
    box-shadow:0 25px 50px rgba(0,0,0,.12);
}

/* Floating Experience Card */

.floating-card{
    position:absolute;
    bottom:30px;
    left:-20px;
    background:#fff;
    padding:20px 25px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
    text-align:center;
    animation: floatCard 3s ease-in-out infinite;
}

.floating-card h2{
    color:#ff685f;
    font-weight:700;
    margin-bottom:0;
}

.floating-card p{
    margin:0;
    font-size:14px;
    color:#666;
}

/* Badge */

.floating-badge{
    position:absolute;
    top:25px;
    right:-20px;
    background:#ff685f;
    color:#fff;
    padding:12px 20px;
    border-radius:50px;
    font-weight:600;
    box-shadow:0 10px 25px rgba(13,110,253,.3);
    animation: pulse 2s infinite;
}

.floating-badge i{
    margin-right:8px;
}


/* WhatsApp Floating Button */

.whatsapp-float{
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 70px;
    height: 70px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    z-index: 99999;
    font-size: 38px;
    box-shadow: 0 0 0 rgba(37,211,102,0.7);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float::before{
    content: '';
    position: absolute;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background: rgba(37,211,102,0.15);
    animation: ripple 2s infinite;
}

.whatsapp-float:hover{
    color:#fff;
    transform: scale(1.08);
}

/* Pulse Animation */

@keyframes whatsappPulse{
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.12);
    }
    100%{
        transform: scale(1);
    }
}

@keyframes ripple{
    0%{
        transform: scale(0.8);
        opacity: 1;
    }
    100%{
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Mobile Responsive */

@media(max-width:768px){

    .whatsapp-float{
        width: 60px;
        height: 60px;
        font-size: 32px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float::before{
        width: 80px;
        height: 80px;
    }
}




/* Content */

.about-content{
    padding-left:20px;
}

.section-tag{
    display:inline-block;
    padding:8px 20px;
    background:#e9f2ff;
    color:#ff685f;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}

.about-content h2{
    font-size:48px;
    font-weight:800;
    line-height:1.3;
    margin-bottom:20px;
}

.about-content h2 span{
    color:#ff685f;
}

.about-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:30px;
}

/* Features */

.feature-list{
    margin-bottom:30px;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:15px;
    font-weight:500;
}

.feature-item i{
    color:#ff685f;
    font-size:20px;
}

/* Stats */

.about-stats{
    display:flex;
    gap:20px;
    margin-bottom:35px;
    flex-wrap:wrap;
}

.stat-box{
    background:#fff;
    padding:20px;
    border-radius:15px;
    min-width:120px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.stat-box:hover{
    transform:translateY(-8px);
}

.stat-box h3{
    color:#ff685f;
    margin-bottom:5px;
    font-weight:700;
}

.stat-box span{
    color:#666;
}

/* Button */

.about-btn{
    display:inline-flex;
    align-items:center;
    background:#ff685f;
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.4s;
}

.about-btn:hover{
    background:#ff685f;
    color:#fff;
    transform:translateY(-4px);
}

/* Animations */

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

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

@keyframes pulse{
    0%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.05);
    }
    100%{
        transform:scale(1);
    }
}

/* Responsive */

@media(max-width:991px){

    .about-content{
        padding-left:0;
        text-align:center;
    }

    .about-content h2{
        font-size:36px;
    }

    .about-stats{
        justify-content:center;
    }

    .feature-item{
        justify-content:center;
    }

    .floating-card{
        left:10px;
    }

    .floating-badge{
        right:10px;
    }
}

@media(max-width:576px){

    .about-content h2{
        font-size:28px;
    }

    .floating-card{
        padding:15px;
    }

    .floating-badge{
        font-size:12px;
        padding:10px 15px;
    }

    .stat-box{
        width:100%;
    }
}

.project-link{
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.project-item{
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-item img{
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-item .p-4{
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-item span{
    flex-grow: 1;
}

.project-item h5{
    min-height: 60px;
}


/*** Service ***/
.service-item .service-text {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    text-align: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .06);
    transition: .5s;
    z-index: 2;
}

.service-item:hover .service-text {
    top: -1.5rem;
}

.service-item .service-text h5 {
    transition: .5s;
}

.service-item:hover .service-text h5 {
    color: var(--primary);
}

.service-item .service-btn {
    position: absolute;
    width: 80%;
    height: 3rem;
    left: 10%;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    transition: .5s;
    z-index: 1;
}

.service-item:hover .service-btn {
    bottom: -1.5rem;
}


/*** Project ***/
.project-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}


/*** Team ***/
.team-item {
    position: relative;
    text-align: center;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .team-social {
    position: absolute;
    padding: 0;
    top: 15px;
    left: 0;
    overflow: hidden;
}

.team-item .team-social li {
    list-style-type: none;
    margin-bottom: 10px;
    margin-left: -50px;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-social li {
    margin-left: 15px;
    opacity: 1;
}

.team-item .team-social li .btn {
    background: #FFFFFF;
    color: var(--primary);
    border-radius: 40px;
    transition: .5s;
}

.team-item .team-social li .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item .team-social li:nth-child(1) {
    transition-delay: .1s;
}

.team-item .team-social li:nth-child(2) {
    transition-delay: .2s;
}

.team-item .team-social li:nth-child(3) {
    transition-delay: .3s;
}

.team-item .team-social li:nth-child(4) {
    transition-delay: .4s;
}

.team-item .team-social li:nth-child(5) {
    transition-delay: .5s;
}


/*** Footer ***/
.footer {
    color: #B0B9AE;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #B0B9AE;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: #B0B9AE;
}

.copyright {
    background: #111111;
}

.copyright a:hover {
    color: var(--primary) !important;
}


/* Floating Social Bar */

.hero-social-icons{
    position:absolute;
    right:30px;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    flex-direction:column;
    gap:15px;
    z-index:99;
}

.social-icon{
    width:58px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    font-size:26px;
    transition:all .4s ease;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
}

.social-icon:hover{
    transform:translateX(-8px) scale(1.08);
    color:#fff;
}

/* Individual Colors */

.whatsapp{
    background:#25D366;
}

.instagram{
    background:linear-gradient(
        45deg,
        #f58529,
        #dd2a7b,
        #8134af,
        #515bd4
    );
}

.email{
    background:#42a5f5;
}

.linkedin{
    background:#0A66C2;
}

/* Responsive */

@media (max-width:991px){

    .hero-social-icons{
        right:15px;
    }

    .social-icon{
        width:50px;
        height:50px;
        font-size:22px;
    }
}

@media (max-width:767px){

    .hero-social-icons{
        position:fixed;
        right:12px;
        top:auto;
        bottom:100px;
        transform:none;
        gap:10px;
    }

    .social-icon{
        width:46px;
        height:46px;
        font-size:20px;
    }
}