/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/
/*************** ADD CUSTOM CSS HERE.   ***************/
@import url("https://fonts.googleapis.com/css2?family=Familjen+Grotesk:ital,wght@0,400..700;1,400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");


/* ========================================
   SECTION 1: OUR SERVICES HERO
   ======================================== */

.section-services-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-services-hero h1 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
}

.section-services-hero p {
    font-weight: 300;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3);
}

/* ========================================
   SECTION 2: SERVICES GRID
   ======================================== */

.section-services-grid {
    background: #ffffff;
}

/* Service Item */
.section-services-grid .service-item {
    padding: 20px 15px;
}

.section-services-grid .service-item h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1a2a4a;
    font-size: 14px !important;
}

.section-services-grid .service-item p {
    color: #5a6a7a;
    font-size: 14px;
}

/* Divider lines */
.section-services-grid hr {
    border: none;
    border-top: 1px solid #d0d0d0;
    margin: 30px 0;
}

/* Work With Us CTA */
.section-services-grid h2 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1a2a4a;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.section-services-grid h2 span {
    transition: transform 0.3s ease;
    display: inline-block;
}

.section-services-grid h2:hover {
    color: #262938;
}

.section-services-grid h2:hover span {
    transform: translateX(10px);
}

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

@media screen and (max-width: 849px) {
    /* Hero Section */
    .section-services-hero {
        padding: 80px 20px !important;
        height: auto !important;
        min-height: 60vh !important;
    }
    
    .section-services-hero h1 {
        font-size: 2.5rem !important;
        letter-spacing: 5px !important;
    }
    
    .section-services-hero p {
        font-size: 1rem !important;
    }
    
    /* Services Grid */
    .section-services-grid {
        padding: 60px 20px !important;
    }
    
    .section-services-grid .service-item {
        margin-bottom: 30px;
        padding: 20px 10px;
    }
    
    .section-services-grid h2 {
        font-size: 2rem !important;
    }
}

@media screen and (max-width: 549px) {
    /* Hero Section */
    .section-services-hero h1 {
        font-size: 2rem !important;
        letter-spacing: 3px !important;
    }
    
    .section-services-hero p {
        font-size: 0.9rem !important;
    }
    
    /* Services Grid */
    .section-services-grid h2 {
        font-size: 1.6rem !important;
    }
    
    .section-services-grid .service-item h3 {
        font-size: 13px !important;
    }
    
    .section-services-grid .service-item p {
        font-size: 13px;
    }
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-services-hero .row,
.section-services-grid .row {
    animation: fadeInUp 0.8s ease-out;
}

/* Service items stagger animation */
.section-services-grid .service-item {
    opacity: 1;
    animation: fadeInUp 0.6s ease-out;
}

.section-services-grid .row:nth-child(1) .service-item:nth-child(1) {
    animation-delay: 0.1s;
}

.section-services-grid .row:nth-child(1) .service-item:nth-child(2) {
    animation-delay: 0.2s;
}

.section-services-grid .row:nth-child(1) .service-item:nth-child(3) {
    animation-delay: 0.3s;
}

.section-services-grid .row:nth-child(2) .service-item:nth-child(1) {
    animation-delay: 0.4s;
}

.section-services-grid .row:nth-child(2) .service-item:nth-child(2) {
    animation-delay: 0.5s;
}

.section-services-grid .row:nth-child(2) .service-item:nth-child(3) {
    animation-delay: 0.6s;
}

/* ========================================
   BACKGROUND IMAGE PARALLAX EFFECT
   ======================================== */

.section-services-hero .section-bg {
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
}

@media screen and (max-width: 849px) {
    .section-services-hero .section-bg {
        background-attachment: scroll;
    }
}




/* ========================================
   GLOBAL BUTTON STYLE
   ======================================== */

.btn-primary-custom.button {
    background: #262938 !important;
    color: #ffffff !important;
    padding: 15px 30px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
}

.btn-primary-custom.button:hover {
    background: #2d7ea9 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(61, 142, 185, 0.3);
}

/* ========================================
   SECTION 1: DEVELOPMENT CONSULTING
   ======================================== */

.section-dev-consulting {
    background: #e8ecf1;
}

.section-dev-consulting h2 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.section-dev-consulting ul {
    color: #5a6a7a;
}

.section-dev-consulting ul li {
    margin-bottom: 10px;
}

/* ========================================
   SECTION 2: IMAGES GRID
   ======================================== */

.section-dev-images {
    background: #e8ecf1;
}

.section-dev-images .dev-image {
    overflow: hidden;
    border-radius: 8px;
}

.section-dev-images .dev-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.section-dev-images .dev-image:hover img {
    transform: scale(1.05);
}

/* ========================================
   SECTION 3: SUPPORT FROM START TO FINISH
   ======================================== */

.section-support {
    background: #e8ecf1;
}

.section-support h2 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.section-support ul {
    color: #5a6a7a;
}

.section-support ul li {
    margin-bottom: 12px;
}

/* ========================================
   SECTION 4: TEAM MEETING (Full Width)
   ======================================== */

.section-team-meeting {
    overflow: hidden;
}

.section-team-meeting .full-width-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
}

/* ========================================
   SECTION 5: SEAMLESS HANDOVER
   ======================================== */

.section-handover {
    background: #e8ecf1;
}

.section-handover h2 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.section-handover .handover-image {
    overflow: hidden;
    border-radius: 8px;
}

.section-handover .handover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.section-handover .handover-image:hover img {
    transform: scale(1.05);
}

.section-handover ul {
    color: #5a6a7a;
}

.section-handover ul li {
    margin-bottom: 10px;
}

/* ========================================
   SECTION 6: YOUR MOST VALUABLE ASSET
   ======================================== */

.section-valuable-asset {
    background: #ffffff;
}

.section-valuable-asset h2 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.section-valuable-asset .asset-image {
    overflow: hidden;
    border-radius: 8px;
}

.section-valuable-asset .asset-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.section-valuable-asset .asset-image:hover img {
    transform: scale(1.05);
}

/* ========================================
   SECTION 7: TWO SERVICES CARDS
   ======================================== */

.section-services-cards {
    background: #e8ecf1;
}

.section-services-cards .service-card {
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-services-cards .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.section-services-cards .service-card:first-child {
    background: #ffffff !important;
}

.section-services-cards .service-card:last-child {
    background: #eef4f8 !important;
}

.section-services-cards .service-icon img {
    max-width: 70px;
    height: auto;
    opacity: 0.8;
}

.section-services-cards h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

@media screen and (max-width: 849px) {
    /* Section 1 */
    .section-dev-consulting {
        padding: 60px 20px !important;
    }
    
    .section-dev-consulting h2 {
        font-size: 1.8rem !important;
    }
    
    .section-dev-consulting .col {
        margin-bottom: 30px;
    }
    
    /* Section 2 */
    .section-dev-images {
        padding: 0 20px 60px !important;
    }
    
    .section-dev-images .col {
        margin-bottom: 20px;
    }
    
    .section-dev-images .dev-image img {
        height: 250px;
    }
    
    /* Section 3 */
    .section-support {
        padding: 60px 20px !important;
    }
    
    .section-support h2 {
        font-size: 1.8rem !important;
    }
    
    .section-support .col:first-child {
        margin-bottom: 30px;
    }
    
    /* Section 4 */
    .section-team-meeting .full-width-image img {
        max-height: 400px;
    }
    
    /* Section 5 */
    .section-handover {
        padding: 60px 20px !important;
    }
    
    .section-handover h2 {
        font-size: 1.8rem !important;
    }
    
    .section-handover .col {
        padding: 20px !important;
    }
    
    /* Section 6 */
    .section-valuable-asset {
        padding: 60px 20px !important;
    }
    
    .section-valuable-asset h2 {
        font-size: 1.8rem !important;
    }
    
    .section-valuable-asset .col {
        padding: 20px !important;
    }
    
    /* Section 7 */
    .section-services-cards {
        padding: 60px 20px !important;
    }
    
    .section-services-cards .service-card {
        padding: 40px 30px !important;
        margin-bottom: 20px;
    }
    
    .section-services-cards h3 {
        font-size: 1.5rem !important;
    }
}

@media screen and (max-width: 549px) {
    /* All sections headings */
    .section-dev-consulting h2,
    .section-support h2,
    .section-handover h2,
    .section-valuable-asset h2 {
        font-size: 1.5rem !important;
    }
    
    .section-services-cards h3 {
        font-size: 1.3rem !important;
    }
    
    /* Images */
    .section-dev-images .dev-image img {
        height: 200px;
    }
    
    .section-team-meeting .full-width-image img {
        max-height: 300px;
    }
    
    /* Service cards */
    .section-services-cards .service-card {
        padding: 30px 25px !important;
    }
    
    /* Buttons */
    .btn-primary-custom.button {
        width: 100% !important;
        text-align: center !important;
    }
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-dev-consulting .row,
.section-support .row,
.section-handover .row,
.section-valuable-asset .row,
.section-services-cards .row {
    animation: fadeInUp 0.8s ease-out;
}

/* ========================================
   PHONE NUMBER LINK STYLE
   ======================================== */

.section-valuable-asset a[href^="tel"] {
    color: #262938 !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: color 0.3s ease !important;
}

.section-valuable-asset a[href^="tel"]:hover {
    color: #2d7ea9 !important;
}





















.lets-talk-section {
    position:relative;
    background-size:cover;
    background-position:center right;
}
.talk-title h2 {
    color:#1a1a1a;
    margin:0;
    line-height:1.1;
}
.contact-info-list {
    max-width:420px;
}
.contact-item {
    display:flex;
    align-items:flex-start;
    margin-bottom:28px;
    font-size:17px;
}
.contact-item:last-of-type {
    margin-bottom:40px;
}
.contact-icon {
    min-width:36px;
    font-size:20px;
    color:#3498db;
    margin-right:16px;
    margin-top:2px;
}
.contact-item a,
.contact-address {
    color:#2c3e50;
    text-decoration:none;
    line-height:1.6;
    transition:color .3s;
}
.contact-item a:hover {
    color:#3498db;
}
.contact-social {
    display:flex;
    gap:20px;
}
.social-link {
    width:44px;
    height:44px;
    border-radius:50%;
    background:rgba(52,152,219,0.1);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#3498db;
    font-size:18px;
    transition:all .3s;
}
.social-link:hover {
    background:#3498db;
    color:#fff;
}
@media (max-width:849px) {
    .talk-title h2 {font-size:48px!important;}
    [col] {padding:0 30px!important;}
    .contact-info-list {margin:0 auto;}
}
@media (max-width:549px) {
    .talk-title h2 {font-size:42px!important;}
    .contact-item {flex-direction:column;}
    .contact-icon {margin-bottom:8px;}
}











.get-in-touch-team {
    background:#f8fbfd;
}
.touch-subtitle p {
    font-size:16px;
    color:#0066cc;
    text-transform:uppercase;
    letter-spacing:1.5px;
    margin:0 0 15px;
}
.touch-title h2 {
    font-size:48px;
    font-weight:800;
    color:#1a1a1a;
    line-height:1.2;
    margin:0;
}
.team-contact {
    text-align: left;
    padding:40px 20px;
    padding-left: 0px;
}
.contact-role {
    font-size:14px;
    color:#0066cc;
    text-transform: inherit;
    letter-spacing:1px;
    margin-bottom:8px;
}
.contact-name {
    font-size:22px;
    font-weight:700;
    color:#1a1a1a;
    margin:0 0 20px;
}
.contact-links a {
    display:inline-block;
    margin:0 8px;
    font-size:15px;
    margin-left: 0px;
    color:#555;
    text-decoration:none;
    transition:color .3s;
}
.contact-links a:hover {
    color:#0066cc;
}
.contact-links a.contact-mail {
    margin-left:15px;
}
@media (max-width:767px) {
    .touch-title h2 {
        font-size:36px!important;
    }
    .team-contact {
        margin-bottom:40px;
    }
}














/* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢nh bÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âªn trÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡i */
.latest-news-single .box-image {
  overflow: hidden;
}
.latest-news-single .box-image img {
  transition: transform 0.7s ease;
  object-fit: cover;
  height: 100%;
}
.latest-news-single:hover .box-image img {
  transform: scale(1.08);
}

/* NÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢i dung bÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âªn phÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â£i */
.latest-news-single .box-text {
  background: #ffffff;
/*   padding: 50px 60px;
  display: flex;
  align-items: center;
  width: 51%; */
}
.latest-news-single .box-text-inner {
  max-width: 100%;
}

/* NgÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â y */
.latest-news-single .post-meta {
  font-size: 14px;
  color: #579abf;
  margin-bottom: 8px;
  font-weight: 500;
  opacity: 1;
}

/* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âng kÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â» ngang */
.latest-news-single .is-divider {
  height: 1px;
  background: #e1e1e1;
  margin: 15px 0 20px;
}

/* TiÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âªu ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â */
.latest-news-single .post-title.is-large a {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  line-height: 1.3;
  transition: color 0.3s;
}
.latest-news-single .post-title.is-large a:hover {
  color: #2c7be5;
}

/* MÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â´ tÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â£ */
.latest-news-single .from_the_blog_excerpt {
  font-size: 16px;
  line-height: 1.65;
  color: #555;
  margin-bottom: 25px;
}

/* NÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âºt Read More */
.latest-news-single .button.is-link {
  color: #2c7be5 !important;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0 !important;
  background: none !important;
  border: none !important;
}
.latest-news-single .button.is-link:hover {
  color: #1a5bb8 !important;
}

/* Responsive */
@media (max-width: 849px) {
  .latest-news-single {
    flex-direction: column;
  }
  .latest-news-single .box-image,
  .latest-news-single .box-text {
    width: 100% !important;
  }
  .latest-news-single .box-text {
    padding: 40px 30px;
  }
  .latest-news-single .post-title.is-large a {
    font-size: 24px;
  }
}











    .listnews .post-meta {
      font-size: 14px;
      color: #2c7be5;
      font-weight: 600;
      letter-spacing: 0.5px;
      margin-bottom: 12px;
      text-transform: uppercase;
    }
  .listnews  .post-title {
      font-size: 20px;
      line-height: 1.3;
      margin: 0 0 15px 0;
      color: #222;
      font-weight: 600;
    }
.listnews    .from_the_blog_excerpt {
      font-size: 15px;
      line-height: 1.5;
      color: #555;
      margin-bottom: 20px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
   .listnews .button   {
      color: #2c7be5;
      font-weight: 600;
      font-size: 14px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }























/* ========================================
   SECTION 1: HERO - ABOUT US
   ======================================== */

.section-about-hero {
    position: relative;
}

.section-about-hero h1 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.section-about-hero p {
    font-weight: 300;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

/* ========================================
   SECTION 2: YOU'VE PAID YOUR LEVIES
   ======================================== */

.section-paid-levies {
    overflow: hidden;
}

.section-paid-levies h2 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.section-paid-levies .levies-image img {
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ========================================
   SECTION 3: WE STAKE OUR REPUTATION
   ======================================== */

.section-reputation {
    overflow: hidden;
}

.section-reputation h2 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.section-reputation .reputation-image img {
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ========================================
   SECTION 4: YOUR PROPERTY - TEAM
   ======================================== */

.section-team {
    background: #e8ecf1;
}

.section-team h2 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Team Member Cards */
.section-team .team-member {
    padding: 20px;
}

.section-team .team-member h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Contact Icons in text */
.section-team .team-member .ux_text a {
    color: #262938 !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.section-team .team-member .ux_text a:hover {
    color: #2d7ea9 !important;
}

/* ========================================
   SECTION 5: MELBOURNE CITYSCAPE
   ======================================== */

.section-melbourne-cta {
    overflow: hidden;
}

.section-melbourne-cta .melbourne-image-col {
    position: relative;
    min-height: 500px;
}

.section-melbourne-cta .melbourne-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-melbourne-cta .melbourne-content-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #5aa8d3 !important;
}

/* White Outline Button */
.section-melbourne-cta .btn-white-outline.button {
    background: transparent !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
    padding: 15px 30px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
}

.section-melbourne-cta .btn-white-outline.button:hover {
    background: #ffffff !important;
    color: #5aa8d3 !important;
    border-color: #ffffff !important;
}

/* ========================================
   PRIMARY BUTTON STYLE (REUSABLE)
   ======================================== */

.btn-primary-custom.button {
    background: #262938 !important;
    color: #ffffff !important;
    padding: 15px 30px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    line-height: 1;
    transition: all 0.3s ease !important;
}

.btn-primary-custom.button:hover {
    background: #2d7ea9 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(61, 142, 185, 0.3);
}

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

@media screen and (max-width: 849px) {
    /* Hero Section */
    .section-about-hero {
        padding: 100px 20px !important;
        height: 50vh !important;
    }
    
    .section-about-hero h1 {
        font-size: 2.5rem !important;
    }
    
    .section-about-hero p {
        font-size: 1rem !important;
    }
    
    /* Paid Levies Section */
    .section-paid-levies {
        padding: 60px 20px !important;
    }
    
    .section-paid-levies .col {
        padding: 20px !important;
    }
    
    .section-paid-levies h2 {
        font-size: 1.8rem !important;
    }
    
    /* Reputation Section */
    .section-reputation {
        padding: 60px 20px !important;
    }
    
    .section-reputation .col {
        padding: 20px !important;
    }
    
    .section-reputation h2 {
        font-size: 1.6rem !important;
    }
    
    /* Team Section */
    .section-team {
        padding: 60px 20px !important;
    }
    
    .section-team h2 {
        font-size: 2rem !important;
    }
    
    .section-team .team-member {
        margin-bottom: 40px;
    }
    
    /* Melbourne CTA */
    .section-melbourne-cta .melbourne-image-col {
        min-height: 300px;
    }
    
    .section-melbourne-cta .melbourne-content-col {
        padding: 50px 30px !important;
    }
}

@media screen and (max-width: 549px) {
    /* Hero Section */
    .section-about-hero h1 {
        font-size: 2rem !important;
    }
    
    .section-about-hero p {
        font-size: 0.9rem !important;
    }
    
    /* All Sections */
    .section-paid-levies h2,
    .section-reputation h2 {
        font-size: 1.5rem !important;
    }
    
    .section-team h2 {
        font-size: 1.6rem !important;
    }
    
    .section-melbourne-cta p {
        font-size: 1.1rem !important;
    }
    
    /* Buttons */
    .btn-primary-custom.button,
    .btn-white-outline.button {
        width: 100% !important;
        text-align: center !important;
    }
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-about-hero .row,
.section-paid-levies .row,
.section-reputation .row,
.section-team .row,
.section-melbourne-cta .row {
    animation: fadeInUp 0.8s ease-out;
}

/* Image Hover Effects */
.section-paid-levies .levies-image,
.section-reputation .reputation-image {
    overflow: hidden;
    border-radius: 8px;
}

.section-paid-levies .levies-image img,
.section-reputation .reputation-image img {
    transition: transform 0.5s ease;
}

.section-paid-levies .levies-image:hover img,
.section-reputation .reputation-image:hover img {
    transform: scale(1.05);
}

















































/* ========================================
   HERO LITTLE THINGS SECTION
   ======================================== */

.hero-little-things {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-little-things .section-bg {
    background-position: center center;
    background-size: cover;
}

/* Typography Style - Italic Elegant */
.hero-little-things .ux_text p {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* ========================================
   HERO BUTTONS ROW
   ======================================== */

.hero-buttons-row {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0 !important;
}

.hero-buttons-row .col {
    padding: 0 !important;
}

.hero-little-things p 
{
	text-shadow: 0 2px 3px #000;
}

.hero-buttons-row .col .col-inner
{
	border: 1px solid white !important;
}

/* ========================================
   HERO BUTTON STYLE
   ======================================== */

.hero-btn.button {
    background: rgba(255, 255, 255, 0.1) !important;
    /* backdrop-filter: blur(10px); */
    -webkit-backdrop-filter: blur(10px);
    border: none !important;
    border-right: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    padding: 25px 40px !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    letter-spacing: 1px;
    text-transform: none !important;
    transition: all 0.4s ease !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100%;
    border: 1px solid white !important;
    margin: 0px !important;
}

.hero-btn.button:last-child {
    border-right: none !important;
}

.hero-btn.button:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    color: #ffffff !important;
}

.hero-btn.button .icon-angle-right {
    opacity: 0.7;
    transition: all 0.3s ease;
}

.hero-btn.button:hover .icon-angle-right {
    opacity: 1;
    transform: translateX(5px);
}

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

@media screen and (max-width: 849px) {
    .hero-little-things {
        padding: 80px 20px 200px !important;
    }
    
    .hero-little-things .ux_text {
        font-size: 2.4rem !important;
        text-align: center;
    }
    
    .hero-buttons-row {
        flex-direction: column;
    }
    
    .hero-btn.button {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
        padding: 20px 30px !important;
    }
}

@media screen and (max-width: 549px) {
    .hero-little-things .ux_text {
        font-size: 1.8rem !important;
    }
    
    .hero-btn.button {
        padding: 18px 25px !important;
        font-size: 13px !important;
    }
}


/* ========================================
   HERO LITTLE THINGS SECTION
   ======================================== */

.hero-little-things {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-little-things .section-bg {
    background-position: center center;
    background-size: cover;
}

/* Typography Style - Italic Elegant */
.hero-little-things .ux_text p {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* ========================================
   HERO BUTTONS ROW
   ======================================== */

.hero-buttons-row {
    position: unset;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0 auto !important;
}

.hero-buttons-row .col {
    padding: 10px !important;
    border: unset !important;
}

/* ========================================
   HERO BUTTON STYLE
   ======================================== */

.hero-btn.button {
    background: transparent !important;
    font-size: 20px !important;
    /* backdrop-filter: blur(10px); */
    border: 1px solid white !important;
    -webkit-backdrop-filter: blur(10px);
    border: none !important;
    border-right: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    padding: 25px 40px !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    letter-spacing: 1px;
    text-transform: none !important;
    transition: all 0.4s ease !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100%;
}

.hero-btn.button:last-child {
    border-right: none !important;
}

.hero-btn.button:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    color: #ffffff !important;
}

.hero-btn.button .icon-angle-right {
    opacity: 0.7;
    transition: all 0.3s ease;
}

.hero-btn.button:hover .icon-angle-right {
    opacity: 1;
    transform: translateX(5px);
}

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

@media screen and (max-width: 849px) {
    .hero-little-things {
        padding: 80px 20px 200px !important;
    }
    
    .hero-little-things .ux_text {
        font-size: 2.4rem !important;
        text-align: center;
    }
    
    .hero-buttons-row {
        flex-direction: column;
    }
    
    .hero-btn.button {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
        padding: 20px 30px !important;
    }
}

@media screen and (max-width: 549px) {
    .hero-little-things .ux_text {
        font-size: 1.8rem !important;
    }
    
    .hero-btn.button {
        padding: 18px 25px !important;
        font-size: 13px !important;
    }
}


.latest-news-single .is-divider
{
display:none !important; 	
}



.latest-news-single h5 a
{
	color: #1e2944 !important;
	font-size:34px !important;
}



.latest-news-single
{
	
}



.latest-news-single
{
	
}


.latest-news-single
{
	
}


/* ========================================
   SECTION 1: LATEST NEWS (Blog Posts)
   ======================================== */

.section-latest-news {
    background: #ffffff;
}

.section-latest-news h2 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Blog Grid Styling */
.section-latest-news .news-blog-grid .post-item {
    margin-bottom: 0;
}

.section-latest-news .news-blog-grid .box {
    background: transparent;
    box-shadow: none;
}

/* Blog Image */
.section-latest-news .news-blog-grid .box-image {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.section-latest-news h5 a 
{
	font-size: 22px !important;
    line-height: 1.5;
    font-weight: 500;
}


.section-latest-news .is-divider
{
	display:none !important;
}

.section-latest-news .op-8 {
   
    line-height: 1.6;
    font-weight: 700;
    color: #579abf;
    font-size: 14px !important;
    opacity: 1 !important;
}

.section-latest-news .news-blog-grid .box-image img {
    transition: transform 0.5s ease;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.section-latest-news .news-blog-grid .post-item:hover .box-image img {
    transform: scale(1.05);
}

/* Date Styling */
.section-latest-news .news-blog-grid .post-date {
    color: #262938 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    margin-bottom: 10px !important;
    display: block;
}

.section-latest-news .news-blog-grid .post-date a {
    color: #262938 !important;
    text-decoration: none !important;
}

/* Post Title */
.section-latest-news .news-blog-grid .post-title {
    margin-bottom: 15px !important;
}

.section-latest-news .news-blog-grid .post-title a {
    color: #1a2a4a !important;
    font-size: 1.35rem !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.section-latest-news .news-blog-grid .post-title a:hover {
    color: #262938 !important;
}

/* Excerpt */
.section-latest-news .news-blog-grid .from_the_blog_excerpt {
    color: #5a6a7a !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    margin-bottom: 20px !important;
	opacity:1 !important;
}

/* Read More Link */
.section-latest-news .news-blog-grid a.plain {
    color: #1a2a4a !important;
    font-size: 22px !important;
    font-weight: 600 !important;
    text-transform: inherit;
    letter-spacing: 1px !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    transition: all 0.3s ease !important;
}

.section-latest-news .news-blog-grid .button.is-link:after,
.section-latest-news .news-blog-grid a.plain:after {
 
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.section-latest-news .news-blog-grid .button.is-link:hover,
.section-latest-news .news-blog-grid a.plain:hover {
    color: #262938 !important;
}

.section-latest-news .news-blog-grid .button.is-link:hover:after,
.section-latest-news .news-blog-grid a.plain:hover:after {
    transform: translateX(5px);
}

/* Remove default arrow icon if exists */
.section-latest-news .news-blog-grid .button.is-link .icon-angle-right {
    display: none !important;
}

/* ========================================
   SECTION 2: TESTIMONIALS
   ======================================== */

.section-testimonials {
    background: #e8ecf1;
}

.section-testimonials h2 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 42px;
}

/* Testimonial Item */
.section-testimonials .testimonial-item {
    padding: 0 20px;
}

/* Quote Text */
.section-testimonials .testimonial-quote p {
    position: relative;
    font-style: normal;
    color: #5a6a7a;
}

/* Optional: Add quote marks */
.section-testimonials .testimonial-quote p:before {
    content: '"';
    position: absolute;
    left: -10px;
    top: -5px;
    font-size: 1.5em;
    color: #262938;
    opacity: 0;
}

/* Author Name */
.section-testimonials .testimonial-item .ux_text p[style*="font-weight: 700"] {
    color: #1a2a4a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Location/Confidential */
.section-testimonials .testimonial-item .ux_text:last-child p {
    color: #262938;
    font-size: 14px;
}

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

@media screen and (max-width: 849px) {
    /* News Section */
    .section-latest-news {
        padding: 60px 20px !important;
    }
    
    .section-latest-news h2 {
        font-size: 2rem !important;
        margin-bottom: 30px !important;
    }
    
    .section-latest-news .news-blog-grid .post-item {
        margin-bottom: 40px !important;
    }
    
    .section-latest-news .news-blog-grid .post-title a {
        font-size: 1.2rem !important;
    }
    
    /* Testimonials Section */
    .section-testimonials {
        padding: 60px 20px !important;
    }
    
    .section-testimonials h2 {
        font-size: 1.8rem !important;
        margin-bottom: 40px !important;
    }
    
    .section-testimonials .testimonial-item {
        padding: 0 10px;
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 549px) {
    /* News Section */
    .section-latest-news h2 {
        font-size: 1.6rem !important;
    }
    
    .section-latest-news .news-blog-grid .post-title a {
        font-size: 1.1rem !important;
    }
    
    /* Testimonials Section */
    .section-testimonials h2 {
        font-size: 1.5rem !important;
    }
    
    .section-testimonials .testimonial-quote p {
        font-size: 0.9rem !important;
    }
}

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

.section-latest-news .news-blog-grid .post-item,
.section-testimonials .testimonial-item {
    opacity: 1;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation for grid items */
.section-latest-news .news-blog-grid .post-item:nth-child(1) {
    animation-delay: 0.1s;
}

.section-latest-news .news-blog-grid .post-item:nth-child(2) {
    animation-delay: 0.2s;
}

.section-latest-news .news-blog-grid .post-item:nth-child(3) {
    animation-delay: 0.3s;
}

.section-testimonials .testimonial-item:nth-child(1) {
    animation-delay: 0.1s;
}

.section-testimonials .testimonial-item:nth-child(2) {
    animation-delay: 0.2s;
}

.section-testimonials .testimonial-item:nth-child(3) {
    animation-delay: 0.3s;
}

/* ========================================
   SECTION: CONTACT - LET'S TALK
   ======================================== */

.section-contact {
    background: #1a2a4a;
}

.section-contact h2 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Contact Info Column */
.section-contact .contact-info-col {
    padding-right: 40px;
}

/* Contact Info Items */
.section-contact .contact-info-item {
    margin-bottom: 5px;
}

.contact-info-item .col
{
    padding-right:0px !important;
}

.section-contact .contact-info-item p {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    width: max-content;
}

.section-contact .contact-info-item .icon {
    margin-top: 2px;
}

/* Social Icons */
.section-contact .social-icons-contact a {
    color: #262938 !important;
    font-size: 18px !important;
    margin-right: 15px !important;
    transition: all 0.3s ease !important;
}

.section-contact .social-icons-contact a:hover {
    color: #5aa8d3 !important;
    transform: translateY(-3px);
}

/* ========================================
   CONTACT FORM 7 STYLING
   ======================================== */

.section-contact .wpcf7 {
    width: 100%;
}

/* Form Grid Layout */
.section-contact .contact-form-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-contact .cf7-row {
    display: flex;
    gap: 20px;
}

.section-contact .cf7-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.section-contact .cf7-col-full {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Labels */
.section-contact .contact-form-grid label {
    color: white !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    margin-bottom: 8px !important;
    display: block !important;
}

/* Input Fields */
.section-contact .wpcf7-form-control:not([type="submit"]) {
    width: 100% !important;
    background: #262938 !important;
    border: 1px solid white !important;
    border-radius: 4px !important;
    padding: 15px 18px !important;
    color: #ffffff !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
}

.section-contact .wpcf7-form-control:not([type="submit"]):focus {
    background: #2d4a6a !important;
    border-color: #262938 !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(61, 142, 185, 0.2) !important;
}

/* Placeholder */
.section-contact .wpcf7-form-control::placeholder {
    color:white !important;
    opacity: 1 !important;
}

/* Textarea */
.section-contact .wpcf7-textarea {
    min-height: 150px !important;
    resize: vertical !important;
}

/* Submit Button Row */
.section-contact .submit-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

/* Submit Button */
.section-contact .wpcf7-submit {
    background: #ffffff !important;
    color: #1a2a4a !important;
    border: none !important;
    border-radius: 0px !important;
    padding: 20px 30px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    line-height: 1;
}

.section-contact .wpcf7-submit:hover {
    background: #262938 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(61, 142, 185, 0.3);
}

/* Validation Messages */
.section-contact .wpcf7-not-valid-tip {
    color: #ff6b6b !important;
    font-size: 12px !important;
    margin-top: 5px !important;
}

.section-contact .wpcf7-response-output {
    border: none !important;
    padding: 15px !important;
    margin: 20px 0 0 0 !important;
    border-radius: 4px !important;
    font-size: 14px !important;
}

.section-contact .wpcf7-mail-sent-ok {
    background: rgba(61, 185, 130, 0.2) !important;
    color: #3db982 !important;
}

.section-contact .wpcf7-validation-errors {
    background: rgba(255, 107, 107, 0.2) !important;
    color: #ff6b6b !important;
}

/* Spinner */
.section-contact .wpcf7-spinner {
    background-color: #262938 !important;
    position: absolute;
}

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

@media screen and (max-width: 849px) {
    .section-contact {
        padding: 60px 20px !important;
    }
    
    .section-contact .contact-info-col {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .section-contact .contact-info-item {
        justify-content: center;
    }
    
    .section-contact .social-icons-contact {
        justify-content: center !important;
    }
    
    .section-contact .cf7-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-contact h2 {
        font-size: 2rem !important;
    }
}

@media screen and (max-width: 549px) {
    .section-contact h2 {
        font-size: 1.75rem !important;
    }
    
    .section-contact .wpcf7-form-control:not([type="submit"]) {
        padding: 12px 15px !important;
    }
    
    .section-contact .wpcf7-submit {
        width: 100% !important;
        padding: 15px 30px !important;
    }
    
    .section-contact .submit-row {
        justify-content: center;
    }
}

/* ========================================
   INPUT FOCUS ANIMATION
   ======================================== */

@keyframes inputFocus {
    0% {
        box-shadow: 0 0 0 0 rgba(61, 142, 185, 0.4);
    }
    100% {
        box-shadow: 0 0 0 4px rgba(61, 142, 185, 0);
    }
}

.section-contact .wpcf7-form-control:not([type="submit"]):focus {
    animation: inputFocus 0.3s ease;
}


.section-latest-news .news-blog-grid .button.is-link::after {
    /* content: "" !important; */
    margin-left: 8px;
    transition: transform 0.3s;
    content: '\f105';
    font-family: fl-icons !important;
}

.section-latest-news .news-blog-grid .button
{
	font-size:14px !important;
	margin:0px !important;
}

.section-latest-news .news-blog-grid h5 a::after {
     content: "" !important; 
   
}

.section-portfolio svg 
{
	margin-right:10px !important;
}


.absolute-footer {
    color: white !important;
    display: flex;
    padding: 40px 0px;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(74, 83, 104, .5);
}

.widget-title span
{
	    color: #579abf;
    font-size: 14px;
    text-transform: initial !important;
}


.widget .is-divider {
   display:none !important;
}


.widget ul li {
    border-top: unset !important;
    font-size: 18px !important;
}

.post-sidebar 
{
	border: unset !important;
}

footer .social-icons i {
    min-width: 1em;
    color: white !important;
}

.submit-button
{
	background:#262938 !important;
}

.icon-menu:before {
    content: "";
    color: white;
}

footer input::placeholder
{
    color: #ffffff !important;
}


.section-contact textarea,.section-contact input
{
	border:1px solid white  !important;
}